Last change
on this file since 1570 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
|
---|
15 | void *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.