summaryrefslogtreecommitdiff
path: root/src/stddef/NULL.h
blob: d93bff2fd4be121c2fb7cb1bb94bbef746198540 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#define NULL                                                          ((void*)0)

/** null pointer **/

/***
is an invalid pointer. It is used as a sentinel value in many standard
library functions.
***/

/*
UNDEFINED(Dereferencing THIS())
IMPLEMENTATION(The value of THIS(), DEFINITION((void*)0))
STDC(1)
*/