blob: 330b6b6e76d80e40a6ad87c3c82bcc8a289e1626 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <stddef.h>
#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)
*/
|