mailing list of musl libc
 help / color / mirror / code / Atom feed
8e1d84e31a68581b3e7905c675db7c8c657dc63a blob 1271 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
 
#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)

#endif
debug log:

solving 8e1d84e3 ...
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/2] 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

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