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
hdt: Adding say command
[syslinux.git]
/
dos
/
stdlib.h
blob
d34670560857567fb70746c862e2247e2b55ed02
1
#ifndef STDLIB_H
2
#define STDLIB_H
3
4
typedef
int
ssize_t
;
5
typedef
unsigned int size_t
;
6
7
void
__attribute__
((
noreturn
))
exit
(
int
);
8
9
void
*
malloc
(
size_t
);
10
void
*
calloc
(
size_t
,
size_t
);
11
void
free
(
void
*);
12
13
extern
unsigned long int
strtoul
(
const char
*
nptr
,
14
char
**
endptr
,
int
base
);
15
16
#endif