blob: 594f5c51349d55d37c80000128ecddefcdb3b802 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef DEF_STDLIB_H
#define DEF_STDLIB_H
#include <types.h>
#include <tce/syscall.h>
void abort();
extern volatile int errno;
#include <_dlmalloc.h>
#endif
|