Changeset 40946 in vbox
- Timestamp:
- Apr 16, 2012 5:16:27 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/types.h
r40945 r40946 41 41 RT_C_DECLS_BEGIN 42 42 # include "xf86_ansic.h" 43 # undef NULL 43 44 RT_C_DECLS_END 44 45 … … 149 150 # undef true 150 151 # undef bool 151 152 152 # else 153 153 # include <stddef.h> 154 154 # include <sys/types.h> 155 155 # endif 156 157 158 /* Define any types missing from sys/types.h on windows. */ 159 # ifdef _MSC_VER 160 # undef ssize_t 161 typedef intptr_t ssize_t; 162 # endif 163 164 #else /* no crt */ 165 # include <iprt/nocrt/compiler/compiler.h> 166 #endif /* no crt */ 156 167 157 168 /** @def NULL … … 165 176 # endif 166 177 #endif 167 168 /* Define any types missing from sys/types.h on windows. */169 # ifdef _MSC_VER170 # undef ssize_t171 typedef intptr_t ssize_t;172 # endif173 174 #else /* no crt */175 # include <iprt/nocrt/compiler/compiler.h>176 #endif /* no crt */177 178 178 179
Note:
See TracChangeset
for help on using the changeset viewer.