unistd.h: use long in read() and write() prototypes
[neatlibc.git] / stdlib.h
blobfb80dc1e0a9cd51ea0d9fdf65187f02235e90351
1 #include <stddef.h>
3 void *malloc(long 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);