Changeset 3929 in vbox for trunk/include
- Timestamp:
- Jul 30, 2007 8:34:59 PM (17 years ago)
- Location:
- trunk/include/iprt/nocrt
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/nocrt/compiler/gcc.h
r3924 r3929 1 /* A quick hack for freebsd where there are no separate location 2 for compiler specific headers like on linux, mingw, os2, ++. 3 This file will be cleaned up later... */ 1 /** @file 2 * innotek Portable Runtime / No-CRT - GCC specifics. 3 * 4 * A quick hack for freebsd where there are no separate location 5 * for compiler specific headers like on linux, mingw, os2, ++. 6 * This file will be cleaned up later... 7 */ 8 4 9 /* 5 10 * Copyright (C) 2006-2007 innotek GmbH … … 49 54 # ifdef __WCHAR_TYPE__ 50 55 typedef __WCHAR_TYPE__ wchar_t; 51 # elif defined( __OS2__) || defined(__WIN__)56 # elif defined(RT_OS_OS2) || defined(RT_OS_WINDOWS) 52 57 typedef uint16_t wchar_t; 53 58 # else -
trunk/include/iprt/nocrt/stdarg.h
r3922 r3929 1 /** @file 2 * innotek Portable Runtime / No-CRT - stdarg.h (-> iprt/stdarg.h). 3 */ 4 1 5 /* 2 6 * Copyright (C) 2006-2007 innotek GmbH -
trunk/include/iprt/nocrt/stddef.h
r3922 r3929 1 /** @file 2 * innotek Portable Runtime / No-CRT - stddef.h (-> iprt/types.h). 3 */ 4 1 5 /* 2 6 * Copyright (C) 2006-2007 innotek GmbH … … 16 20 17 21 #include <iprt/types.h> 22
Note:
See TracChangeset
for help on using the changeset viewer.