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