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 upstream version 3.61+dfsg.
[syslinux-debian/hramrach.git]
/
com32
/
include
/
alloca.h
blob
91ef4c0d7792cf868981647555e3c65c45953dda
1
/*
2
* alloca.h
3
*
4
* Just call the builtin alloca() function
5
*/
6
7
#ifndef _ALLOCA_H
8
#define _ALLOCA_H
9
10
#define alloca(size) __builtin_alloca(size)
11
12
#endif
/* _ALLOCA_H */