13 lines
159 B
C
13 lines
159 B
C
#ifndef _SYS_NULL_H
|
|
#define _SYS_NULL_H
|
|
|
|
#ifndef NULL
|
|
#ifdef __cplusplus
|
|
#define NULL 0
|
|
#else
|
|
#define NULL ((void *)0)
|
|
#endif
|
|
#endif
|
|
|
|
#endif /* _SYS_NULL_H */
|