#ifndef __STDLIB_H__ #define __STDLIB_H__ #include #ifndef NULL #define NULL ((void *)0) #endif int atexit(void (*function)(void)); void exit(int status); void abort(void); void *malloc(size_t sz); void free(void *buf); #endif /* __STDLIB_H__ */