mailing list of musl libc
 help / color / mirror / code / Atom feed
f3d53cbe05bd50955f2d4118933f6b5ebcc40287 blob 891 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
 
#ifndef _FEATURES_H
#define _FEATURES_H

#include <stdc-predef.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

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

#endif
debug log:

solving f3d53cbe ...
found f3d53cbe in https://inbox.vuxu.org/musl/20210416003521.2147-2-ericonr@disroot.org/
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/20210416003521.2147-2-ericonr@disroot.org/
diff --git a/include/features.h b/include/features.h
index 85cfb72a..f3d53cbe 100644

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

index at:
100644 f3d53cbe05bd50955f2d4118933f6b5ebcc40287	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).