11 lines
120 B
C
11 lines
120 B
C
|
|
||
|
#ifndef __STDDEF_H__
|
||
|
#define __STDDEF_H__
|
||
|
|
||
|
#ifndef NULL
|
||
|
#define NULL ((void *)0)
|
||
|
#endif
|
||
|
|
||
|
#endif /* __STDDEF_H__ */
|
||
|
|