repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding debian version 3.40~pre9-1.
[syslinux-debian/hramrach.git]
/
dos
/
stdlib.h
blob
45b76a5c3ac09375820ae102a8f0b6d3036a9815
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
free
(
void
*);
11
12
#endif