elf: add the 64-bit types
[neatlibc.git] / stdlib.h
blobaab25eba4e75ef26ebc929311fd46a84749764f2
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 void abort(void);
12 char *getenv(char *name);
13 void qsort(void *a, int n, int sz, int (*cmp)(void *, void *));
14 int mkstemp(char *t);