Changeset 31847 in vbox for trunk/include/iprt/alloca.h
- Timestamp:
- Aug 21, 2010 8:33:07 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/alloca.h
r28800 r31847 24 24 */ 25 25 26 #ifndef __iprt_alloca_h__ 27 #define __iprt_alloca_h__ 26 #ifndef ___iprt_alloca_h 27 #define ___iprt_alloca_h 28 29 #if defined(IN_RC) || defined(IN_RING0_AGNOSTIC) 30 # error "No alloca() in raw-mode and agnostic ring-0 context as it may have external dependencies like libgcc." 31 #endif 28 32 29 33 /* … … 38 42 /* ASSUMES GNU C */ 39 43 # define alloca(cb) __builtin_alloca(cb) 44 40 45 #else 41 46 # include <stdlib.h>
Note:
See TracChangeset
for help on using the changeset viewer.