Changeset 95769 in vbox for trunk/include
- Timestamp:
- Jul 20, 2022 10:13:34 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/alloca.h
r95768 r95769 52 52 #elif defined(IPRT_NO_CRT) && defined(RT_OS_WINDOWS) 53 53 # include <iprt/types.h> 54 void * _alloca(size_t); 54 55 RT_C_DECLS_BEGIN 56 # ifdef RT_ARCH_X86 57 void * __cdecl _alloca(size_t); 58 # else 59 void *_alloca(size_t); 60 # endif 55 61 # define alloca _alloca 62 RT_C_DECLS_END 56 63 57 64 #else
Note:
See TracChangeset
for help on using the changeset viewer.