11 lines
346 B
C
11 lines
346 B
C
#ifndef STDLIB_H
|
|
#define STDLIB_H
|
|
#include <stddef.h>
|
|
void *malloc(size_t size);
|
|
void free(void *ptr);
|
|
void *realloc(void *ptr, size_t size);
|
|
#endif
|
|
void abort(void);
|
|
void *calloc(size_t nmemb, size_t size);
|
|
unsigned long strtoul(const char *nptr, char **endptr, int base);
|
|
unsigned long long strtoull(const char *nptr, char **endptr, int base);
|