summaryrefslogtreecommitdiff
path: root/src/user/lib/libc/include/stdlib.h
blob: 1cc5d160067edbe127e2ce65add40e4774c0be0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef DEF_STDLIB_H
#define DEF_STDLIB_H

#include <types.h>
#include <tce/syscall.h>

#ifdef __cplusplus
extern "C" { namespace libc {
#endif

void abort();
extern volatile int errno;
#ifdef __cplusplus
} }
#endif

#include <_dlmalloc.h>

#endif