metal-cos/include/stdlib.h

15 lines
198 B
C
Raw Normal View History

2014-02-12 21:47:13 +00:00
#ifndef __STDLIB_H__
#define __STDLIB_H__
#ifndef NULL
#define NULL ((void *)0)
#endif
2014-07-28 00:09:31 +00:00
int atexit(void (*function)(void));
void exit(int status);
2014-10-14 19:39:26 +00:00
void abort(void);
2014-07-28 00:09:31 +00:00
2014-02-12 21:47:13 +00:00
#endif /* __STDLIB_H__ */