blob: ced49b5b8f61237a6878013182005b38e1dd78b0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef DEF_LIB_STD_H
#define DEF_LIB_STD_H
// Functions enabling the use of dlmalloc code
#include <types.h> /* For size_t */
#ifdef __cplusplus
extern "C" void abort();
#else
void abort();
#endif
#define sbrk ksbrk
#define brk kbrk
extern int errno;
#endif
|