source: bootcd/isolinux/syslinux-6.03/com32/include/alloca.h @ 26ffad7

Last change on this file since 26ffad7 was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 171 bytes
RevLine 
[e16e8f2]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 */
Note: See TracBrowser for help on using the repository browser.