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

#include <stdint.h>

#ifdef __cplusplus
extern "C"
{
#endif

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

#ifdef __cplusplus
};
#endif

#endif
OpenPOWER on IntegriCloud