repo.or.cz
/
syslinux.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
pxe, tftp: make TimeoutTable static
[syslinux.git]
/
memdump
/
stdlib.h
blob
5b14ec8da42baaff20dd6850f99268d28ec1eb0b
1
#ifndef STDLIB_H
2
#define STDLIB_H
3
4
#define NULL ((void *)0)
5
6
typedef
int
ssize_t
;
7
typedef
unsigned int size_t
;
8
9
void
__attribute__
((
noreturn
))
exit
(
int
);
10
11
void
*
malloc
(
size_t
);
12
void
free
(
void
*);
13
14
#endif