12 lines
227 B
C
12 lines
227 B
C
#ifndef STDDEF_H
|
|
#define STDDEF_H
|
|
|
|
#undef NULL
|
|
#ifndef __cplusplus
|
|
#define NULL ((void *)0)
|
|
#else /* C++ */
|
|
#define NULL 0
|
|
#endif /* C++ */
|
|
|
|
#endif
|
|
|