mailing list of musl libc
 help / color / mirror / code / Atom feed
b209c2ae5815ee9468702e606070c06a131f84a7 blob 694 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
 
#include <features.h>

#undef assert

#ifdef NDEBUG
#define	assert(x) (void)0
#elif defined(__has_builtin)
#if __has_builtin(__builtin_FILE)
#define assert(x) ((void)((x) || (__assert_fail(#x, __builtin_FILE(), __builtin_LINE(), __func__),0)))
#else
#define assert(x) ((void)((x) || (__assert_fail(#x, __FILE__, __LINE__, __func__),0)))
#endif
#else
#define assert(x) ((void)((x) || (__assert_fail(#x, __FILE__, __LINE__, __func__),0)))
#endif

#if __STDC_VERSION__ >= 201112L && !defined(__cplusplus)
#define static_assert _Static_assert
#endif

#ifdef __cplusplus
extern "C" {
#endif

_Noreturn void __assert_fail (const char *, const char *, int, const char *);

#ifdef __cplusplus
}
#endif
debug log:

solving b209c2ae ...
found b209c2ae in https://inbox.vuxu.org/musl/20230218013333.844224-1-i@maskray.me/
found d14ec94e in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 d14ec94e7a263b2cbaa3a72b9ff09dc9d8807886	include/assert.h

applying [1/1] https://inbox.vuxu.org/musl/20230218013333.844224-1-i@maskray.me/
diff --git a/include/assert.h b/include/assert.h
index d14ec94e..b209c2ae 100644

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

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