metal-cos/include/stdlib.h
2014-10-14 12:39:26 -07:00

15 lines
198 B
C

#ifndef __STDLIB_H__
#define __STDLIB_H__
#ifndef NULL
#define NULL ((void *)0)
#endif
int atexit(void (*function)(void));
void exit(int status);
void abort(void);
#endif /* __STDLIB_H__ */