repo.or.cz
/
syslinux-debian.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Releasing debian version 3:6.03+dfsg-10.
[syslinux-debian.git]
/
com32
/
include
/
alloca.h
blob
8c4067f9da0a04402caf306e1e2e895dc5d1b024
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 */