source: trunk/src/emx/include/alloca.h@ 1567

Last change on this file since 1567 was 1506, checked in by bird, 21 years ago

@unixroot. header reviews. ++

  • Property cvs2svn:cvs-rev set to 1.2
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 312 bytes
Line 
1/* alloca.h,v 1.2 2004/09/14 22:27:31 bird Exp */
2/** @file
3 * EMX
4 */
5
6#ifndef _ALLOCA_H
7#define _ALLOCA_H
8
9#include <sys/cdefs.h>
10#include <stddef.h>
11
12#undef alloca
13
14__BEGIN_DECLS
15void *alloca(size_t);
16__END_DECLS
17
18#if !defined (alloca)
19#define alloca(x) __builtin_alloca(x)
20#endif
21
22#endif /* not _ALLOCA_H */
Note: See TracBrowser for help on using the repository browser.