2014-02-12 21:47:13 +00:00
|
|
|
|
|
|
|
#ifndef __STDLIB_H__
|
|
|
|
#define __STDLIB_H__
|
|
|
|
|
2015-01-03 00:13:53 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2014-02-12 21:47:13 +00:00
|
|
|
#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
|
|
|
|
2015-01-03 00:13:53 +00:00
|
|
|
void *malloc(size_t sz);
|
|
|
|
void free(void *buf);
|
|
|
|
|
2014-02-12 21:47:13 +00:00
|
|
|
#endif /* __STDLIB_H__ */
|
|
|
|
|