14 lines
180 B
C
14 lines
180 B
C
|
|
#ifndef __STDLIB_H__
|
|
#define __STDLIB_H__
|
|
|
|
#ifndef NULL
|
|
#define NULL ((void *)0)
|
|
#endif
|
|
|
|
int atexit(void (*function)(void));
|
|
void exit(int status);
|
|
|
|
#endif /* __STDLIB_H__ */
|
|
|