stdlib: add qsort.c
[neatlibc.git] / stdlib.h
blob95160bb8edccb1dfe7a9d7190e49949f468edc40
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);
12 void qsort(void *a, int n, int sz, int (*cmp)(void *, void *));