stdio.h: fix fclose()
[neatlibc.git] / stdlib.h
blob829d98d8377cfd86e5001fe396b9dc8e42495527
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 *));