mailing list of musl libc
 help / color / mirror / code / Atom feed
e0a00129429e50bba969f58cf2757c6f6b741561 blob 938 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
 
#ifndef _STDC_VERSION_STDDEF_H__
#define _STDC_VERSION_STDDEF_H__ 201900L

#if __cplusplus >= 201103L
#define NULL nullptr
#elif defined(__cplusplus)
#define NULL 0L
#else
#define NULL ((void*)0)
#endif

#define __NEED_ptrdiff_t
#define __NEED_size_t
#define __NEED_wchar_t
#if __STDC_VERSION__ >= 201112L || __cplusplus >= 201103L
#define __NEED_max_align_t
#endif

#include <bits/alltypes.h>

#if __GNUC__ > 3
#define offsetof(type, member) __builtin_offsetof(type, member)
#else
#define offsetof(type, member) ((size_t)( (char *)&(((type *)0)->member) - (char *)0 ))
#endif

#if __STDC_VERSION__ >= 202000L
#define unreachable() __builtin_unreachable()
#endif

#if __STDC_VERSION__ >= 202311L
typedef typeof(nullptr) nullptr_t;
// Some compilers still only have partial support for C23
#elif __STDC_VERSION__ >= 202000L && defined(__is_identifier)
#if !__is_identifier(nullptr)
typedef typeof(nullptr) nullptr_t;
#endif
#endif

#endif
debug log:

solving e0a00129 ...
found e0a00129 in https://inbox.vuxu.org/musl/65d989b7db0d13957a307d16360a1c186ac4eb28.1685522953.git.Jens.Gustedt@inria.fr/
found 70f299a6 in https://inbox.vuxu.org/musl/46ea0a8a0f85fc68d26c6a4019d5215b6387ce9e.1685522953.git.Jens.Gustedt@inria.fr/
found f77a1b49 in https://inbox.vuxu.org/musl/61787ab80d581f7611360d7aad0f04195198988b.1685522953.git.Jens.Gustedt@inria.fr/
found f25b8639 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 f25b86396e80a015490a6aec521cb38ab36ab118	include/stddef.h

applying [1/3] https://inbox.vuxu.org/musl/61787ab80d581f7611360d7aad0f04195198988b.1685522953.git.Jens.Gustedt@inria.fr/
diff --git a/include/stddef.h b/include/stddef.h
index f25b8639..f77a1b49 100644


applying [2/3] https://inbox.vuxu.org/musl/46ea0a8a0f85fc68d26c6a4019d5215b6387ce9e.1685522953.git.Jens.Gustedt@inria.fr/
diff --git a/include/stddef.h b/include/stddef.h
index f77a1b49..70f299a6 100644


applying [3/3] https://inbox.vuxu.org/musl/65d989b7db0d13957a307d16360a1c186ac4eb28.1685522953.git.Jens.Gustedt@inria.fr/
diff --git a/include/stddef.h b/include/stddef.h
index 70f299a6..e0a00129 100644

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

index at:
100644 e0a00129429e50bba969f58cf2757c6f6b741561	include/stddef.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).