summaryrefslogtreecommitdiffstats
path: root/sysroot/usr/include/stdlib.h
blob: f29cce784b6b24a4a9afeb410395fa60e2caa659 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _STDLIB_H
#define _STDLIB_H 1

#include <stddef.h>

__attribute__((noreturn)) void abort(void);
int atexit(void (*callback)(void));

int atoi(const char*);

void free(void *ptr);
void *malloc(size_t size);
void *calloc(size_t nmemb, size_t size);

char *getenv(const char *key);

#endif