Changeset 32047 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Aug 27, 2010 12:43:06 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/stringalloc.cpp
r31157 r32047 32 32 #include "internal/iprt.h" 33 33 34 #include <iprt/alloca.h> 34 #ifndef IN_RING0 35 # include <iprt/alloca.h> 36 #endif 35 37 #include <iprt/assert.h> 36 38 #include <iprt/mem.h> … … 176 178 177 179 180 #ifndef IN_RING0 181 182 /* XXX Currently not needed anywhere. alloca() induces some linker problems for ring 0 code 183 * with newer versions of VCC */ 184 178 185 RTDECL(int) RTStrAAppendExNVTag(char **ppsz, size_t cPairs, va_list va, const char *pszTag) 179 186 { … … 234 241 } 235 242 RT_EXPORT_SYMBOL(RTStrAAppendExNVTag); 243 244 #endif 236 245 237 246
Note:
See TracChangeset
for help on using the changeset viewer.