mailing list of musl libc
 help / color / mirror / code / Atom feed
adc41c04c62376a5bc0f8f89650bd8a73de884d2 blob 1830 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
72
73
74
75
76
77
78
79
80
81
 
#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
# if __has_c_attribute(__unsequenced__)
#  define __unsequenced [[__unsequenced__]]
# endif
#endif

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

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

// If the platform supports the _BitInt(128) types (all C23 compiler
// should have that)
#if __BITINT_MAXWIDTH__ >= 128 || BITINT_MAXWIDTH >= 128
#define __has_bitint128 1
#endif

// If the platform supports the 128 integer type and has _BitInt(128)
#if __SIZEOF_INT128__ && __has_bitint128
#define __has_int128_t 1
#endif

#endif
debug log:

solving adc41c04 ...
found adc41c04 in https://inbox.vuxu.org/musl/4dd597d0f4738e7a161dff96dd0955154fe7dd75.1685521571.git.Jens.Gustedt@inria.fr/
found 46eca334 in https://inbox.vuxu.org/musl/1d37970aa453a70e60639aa4f7a1b33431432bcd.1685521571.git.Jens.Gustedt@inria.fr/
found 9d0d3724 in https://inbox.vuxu.org/musl/9ed459afff56aca8d52a6e285360b9ca61e9abfb.1685521571.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/5] 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/5] https://inbox.vuxu.org/musl/9ed459afff56aca8d52a6e285360b9ca61e9abfb.1685521571.git.Jens.Gustedt@inria.fr/
diff --git a/include/features.h b/include/features.h
index 8e1d84e3..9d0d3724 100644


applying [3/5] https://inbox.vuxu.org/musl/1d37970aa453a70e60639aa4f7a1b33431432bcd.1685521571.git.Jens.Gustedt@inria.fr/
diff --git a/include/features.h b/include/features.h
index 9d0d3724..46eca334 100644


applying [4/5] https://inbox.vuxu.org/musl/4dd597d0f4738e7a161dff96dd0955154fe7dd75.1685521571.git.Jens.Gustedt@inria.fr/
diff --git a/include/features.h b/include/features.h
index 46eca334..adc41c04 100644

Checking patch include/features.h...
Applied patch include/features.h cleanly.
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 adc41c04c62376a5bc0f8f89650bd8a73de884d2	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).