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