mailing list of musl libc
 help / color / mirror / code / Atom feed
07662804162209ab1c80206c52f5f7aa4945890e blob 1070 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
 
#ifndef _FEATURES_H
#define _FEATURES_H

#define __MUSL__       @MUSL_MAJOR@
#define __MUSL_MINOR__ @MUSL_MINOR@
#define __MUSL_PATCH__ @MUSL_PATCH@

#define __MUSL_PREREQ(maj, min) \
  ((__MUSL__ << 16) + __MUSL_MINOR >= ((maj) << 16) + (min))

#if defined(_ALL_SOURCE) && !defined(_GNU_SOURCE)
#define _GNU_SOURCE 1
#endif

#if defined(_DEFAULT_SOURCE) && !defined(_BSD_SOURCE)
#define _BSD_SOURCE 1
#endif

#if !defined(_POSIX_SOURCE) && !defined(_POSIX_C_SOURCE) \
 && !defined(_XOPEN_SOURCE) && !defined(_GNU_SOURCE) \
 && !defined(_BSD_SOURCE) && !defined(__STRICT_ANSI__)
#define _BSD_SOURCE 1
#define _XOPEN_SOURCE 700
#endif

#if __STDC_VERSION__ >= 199901L
#define __restrict restrict
#elif !defined(__GNUC__)
#define __restrict
#endif

#if __STDC_VERSION__ >= 199901L || defined(__cplusplus)
#define __inline inline
#elif !defined(__GNUC__)
#define __inline
#endif

#if __STDC_VERSION__ >= 201112L
#elif defined(__GNUC__)
#define _Noreturn __attribute__((__noreturn__))
#else
#define _Noreturn
#endif

#define __REDIR(x,y) __typeof__(x) x __asm__(#y)

#endif
debug log:

solving 07662804 ...
found 07662804 in https://inbox.vuxu.org/musl/309EDCC9-2402-46B5-BDBD-B96677E470DD@apple.com/
found 85cfb72a in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 85cfb72a0d427de18f5732c7fd320310cbe8843d	include/features.h

applying [1/1] https://inbox.vuxu.org/musl/309EDCC9-2402-46B5-BDBD-B96677E470DD@apple.com/
diff --git a/include/features.h b/include/features.h.in
similarity index 80%
rename from include/features.h
rename to include/features.h.in
index 85cfb72a..07662804 100644

Checking patch include/features.h => include/features.h.in...
Applied patch include/features.h => include/features.h.in cleanly.

index at:
100644 07662804162209ab1c80206c52f5f7aa4945890e	include/features.h.in

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).