blob: ced49b5b8f61237a6878013182005b38e1dd78b0 (
plain) (
tree)
|
|
#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
|