mailing list of musl libc
 help / color / mirror / code / Atom feed
d85b2c55c43a06dab15c18aaf2c601681a2953bb blob 806 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
 
#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

#define unreachable() __builtin_unreachable()

#if __STDC_VERSION__ >= 202311L
typedef typeof(nullptr) nullptr_t;
#else
#if __clang__
#if !__is_identifier(nullptr)
typedef typeof(nullptr) nullptr_t;
#endif
#endif
#endif

#endif
debug log:

solving d85b2c55 ...
found d85b2c55 in https://inbox.vuxu.org/musl/ed555b651f6638540e5ac9d9d14a1980374ccc44.1684932861.git.Jens.Gustedt@inria.fr/
found e4d6b2ef in https://inbox.vuxu.org/musl/9985ac5610d2e36d01032e1685ca3d629fccac64.1684932861.git.Jens.Gustedt@inria.fr/
found 09be5fb6 in https://inbox.vuxu.org/musl/bda8a83087029489682ca1d04a6a0f518906e258.1684932861.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/bda8a83087029489682ca1d04a6a0f518906e258.1684932861.git.Jens.Gustedt@inria.fr/
diff --git a/include/stddef.h b/include/stddef.h
index f25b8639..09be5fb6 100644


applying [2/3] https://inbox.vuxu.org/musl/9985ac5610d2e36d01032e1685ca3d629fccac64.1684932861.git.Jens.Gustedt@inria.fr/
diff --git a/include/stddef.h b/include/stddef.h
index 09be5fb6..e4d6b2ef 100644


applying [3/3] https://inbox.vuxu.org/musl/ed555b651f6638540e5ac9d9d14a1980374ccc44.1684932861.git.Jens.Gustedt@inria.fr/
diff --git a/include/stddef.h b/include/stddef.h
index e4d6b2ef..d85b2c55 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 d85b2c55c43a06dab15c18aaf2c601681a2953bb	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).