Changeset 1693 for trunk/src/emx/include/alloca.h
- Timestamp:
- Dec 3, 2004, 5:44:50 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/alloca.h
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r1692 r1693 10 10 #include <stddef.h> 11 11 12 #undef alloca13 14 12 __BEGIN_DECLS 15 void *alloca(size_t); 13 #if __GNUC__ >= 2 || defined(__INTEL_COMPILER) 14 #undef alloca /* some GNU bits try to get cute and define this on their own */ 15 #define alloca(sz) __builtin_alloca(sz) 16 #elif defined(lint) 17 void *alloca(size_t); 18 #endif 16 19 __END_DECLS 17 20 18 #if !defined (alloca)19 #define alloca(x) __builtin_alloca(x)20 #endif21 21 22 22 #endif /* not _ALLOCA_H */ -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.