aboutsummaryrefslogtreecommitdiff
path: root/vendor/libc/include/stdlib.h
blob: 22cfc528b1d81ebb594a87253976ab396c47be13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stddef.h>

void *malloc(size_t size);

void *aligned_alloc(size_t alignment, size_t size);

void free(void *);

void *realloc(void *, size_t);

void qsort(void* base, size_t num, size_t size, int (*compare)(const void*, const void*));

int atoi(const char *);
long atol(const char *);
long long atoll(const char *);

double atof(const char *);

long strtol(const char *, char **, int);