summaryrefslogtreecommitdiffstats
path: root/src/include/stdlib.h
blob: 69afb84a49ebf2adb0d533f7c20233b4a78afdee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __STDLIB_H
#define __STDLIB_H

#include <stdint.h>

#ifdef __cplusplus
extern "C"
{
#endif

void* malloc(size_t);
void free(void*);
void* realloc(void*, size_t);

#ifdef __cplusplus
};
#endif

#endif
OpenPOWER on IntegriCloud