mailing list of musl libc
 help / color / mirror / code / Atom feed
4083436de8b152e6ac0552b50a3d4fe433732d88 blob 1644 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
 
#ifndef _FEATURES_H
#define _FEATURES_H

#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

#ifdef __has_c_attribute
# if __has_c_attribute(__noreturn__)
#  define __noreturn [[__noreturn__]]
# endif
# if __has_c_attribute(__deprecated__)
#  define __deprecated [[__deprecated__]]
# endif
#endif

#ifndef __noreturn
# define __noreturn _Noreturn
#endif
#ifndef __deprecated
# if defined(__GNUC__)
#  define __deprecated __attribute__((__deprecated__))
# else
#  define __deprecated
# endif
#endif

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

#define __has_VA_OPT2(_0, _1, ...) _1
#define __has_VA_OPT1(...) __has_VA_OPT2(__VA_OPT__(,) 1, 0,)
#define __has_VA_OPT __has_VA_OPT1(C23)

// If the platform supports the 128 integer type and has _BitInt(N)
// support where N large enough (all C23 compiler should have the
// latter)
#if __SIZEOF_INT128__ && (__BITINT_MAXWIDTH__ >= 128)
#define __has_int128_t 1
#endif

#endif
debug log:

solving 4083436d ...
found 4083436d in https://inbox.vuxu.org/musl/c888814b01965f6885b03819c0cb9be00d4f5800.1684922674.git.Jens.Gustedt@inria.fr/
found 05abcadc in https://inbox.vuxu.org/musl/8fc3c1e71bfea50b582f1c9e57a53f8646010287.1684922674.git.Jens.Gustedt@inria.fr/
found 8e1d84e3 in https://inbox.vuxu.org/musl/c6a799a745dabb35564c4cfa9975d4b8da93fa27.1685521571.git.Jens.Gustedt@inria.fr/ ||
	https://inbox.vuxu.org/musl/c6a799a745dabb35564c4cfa9975d4b8da93fa27.1684922674.git.Jens.Gustedt@inria.fr/
found 85cfb72a in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 85cfb72a0d427de18f5732c7fd320310cbe8843d	include/features.h

applying [1/4] https://inbox.vuxu.org/musl/c6a799a745dabb35564c4cfa9975d4b8da93fa27.1685521571.git.Jens.Gustedt@inria.fr/
diff --git a/include/features.h b/include/features.h
index 85cfb72a..8e1d84e3 100644

Checking patch include/features.h...
Applied patch include/features.h cleanly.

skipping https://inbox.vuxu.org/musl/c6a799a745dabb35564c4cfa9975d4b8da93fa27.1684922674.git.Jens.Gustedt@inria.fr/ for 8e1d84e3
index at:
100644 8e1d84e31a68581b3e7905c675db7c8c657dc63a	include/features.h

applying [2/4] https://inbox.vuxu.org/musl/8fc3c1e71bfea50b582f1c9e57a53f8646010287.1684922674.git.Jens.Gustedt@inria.fr/
diff --git a/include/features.h b/include/features.h
index 8e1d84e3..05abcadc 100644


applying [3/4] https://inbox.vuxu.org/musl/c888814b01965f6885b03819c0cb9be00d4f5800.1684922674.git.Jens.Gustedt@inria.fr/
diff --git a/include/features.h b/include/features.h
index 05abcadc..4083436d 100644

Checking patch include/features.h...
Applied patch include/features.h cleanly.
Checking patch include/features.h...
Applied patch include/features.h cleanly.

index at:
100644 4083436de8b152e6ac0552b50a3d4fe433732d88	include/features.h

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).