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

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

bootstuff

  • Property mode set to 100644
File size: 171 bytes
Line 
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.