stdlib: fix the return value of exit()
[neatlibc.git] / stdlib.h
blob0ec27946bb0f13b649c378ba1802e639472c0db2
1 #include <stddef.h>
3 void *malloc(int n);
4 void free(void *m);
6 int atoi(char *s);
7 long atol(char *s);
8 int abs(int n);
10 void exit(int status);
11 char *getenv(char *name);