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