metal-cos/include/stdlib.h
2014-07-27 17:09:31 -07:00

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__ */