Changeset 3629 in vbox for trunk/include
- Timestamp:
- Jul 16, 2007 12:06:30 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22900
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/alloca.h
r3092 r3629 22 22 #define __iprt_alloca_h__ 23 23 24 25 24 /* 26 25 * If there are more difficult platforms out there, we'll do OS … … 30 29 * interesting of course... 31 30 */ 32 #if defined(IN_RING0) && defined( __LINUX__)31 #if defined(IN_RING0) && defined(RT_OS_LINUX) 33 32 /* ASSUMES GNU C */ 34 33 # define alloca(cb) __builtin_alloca(cb) 35 34 #else 36 35 # include <stdlib.h> 37 # if !defined( __DARWIN__) && !defined(__FREEBSD__)36 # if !defined(RT_OS_DARWIN) && !defined(RT_OS_FREEBSD) 38 37 # include <malloc.h> 39 38 # endif 40 # ifdef __SOLARIS__39 # ifdef RT_OS_SOLARIS 41 40 # include <alloca.h> 42 41 # endif
Note:
See TracChangeset
for help on using the changeset viewer.