musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/include/unistd.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013年11月24日 21:42:55 -0500
committerRich Felker <dalias@aerifal.cx>2013年11月24日 21:42:55 -0500
commitc8a9c22173f485c8c053709e1dfa0a617cb6be1a (patch)
tree6e09d7e73bbff957b45370d412cc6299fe51eb37 /include/unistd.h
parent7e771e62e78944b9d1fe7e78ef71422b9d51f275 (diff)
downloadmusl-c8a9c22173f485c8c053709e1dfa0a617cb6be1a.tar.gz
restore type of NULL to void * except when used in C++ programs
unfortunately this eliminates the ability of the compiler to diagnose some dangerous/incorrect usage, but POSIX requires (as an extension to the C language, i.e. CX shaded) that NULL have type void *. plain C allows it to be defined as any null pointer constant. the definition 0L is preserved for C++ rather than reverting to plain 0 to avoid dangerous behavior in non-conforming programs which use NULL as a variadic sentinel. (it's impossible to use (void *)0 for C++ since C++ lacks the proper implicit pointer conversions, and other popular alternatives like the GCC __null extension seem non-conforming to the standard's requirements.)
Diffstat (limited to 'include/unistd.h')
-rw-r--r--include/unistd.h 4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/unistd.h b/include/unistd.h
index a00a9c4f..9f2fac96 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -15,7 +15,11 @@ extern "C" {
#define SEEK_CUR 1
#define SEEK_END 2
+#ifdef __cplusplus
#define NULL 0L
+#else
+#define NULL ((void*)0)
+#endif
#define __NEED_size_t
#define __NEED_ssize_t
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月19日 04:03:25 +0000

AltStyle によって変換されたページ (->オリジナル) /