Changeset 52210 in vbox for trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibRuntimeXF86.cpp
- Timestamp:
- Jul 28, 2014 3:03:24 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibRuntimeXF86.cpp
r31159 r52210 35 35 #include <iprt/mem.h> 36 36 #include <iprt/string.h> 37 #if defined(VBOX_VBGLR3_XFREE86) 37 38 extern "C" { 38 39 # define XFree86LOADER … … 41 42 # undef size_t 42 43 } 44 #else 45 # include <ctype.h> 46 # include <errno.h> 47 # include <stdarg.h> 48 # include <stdio.h> 49 # include <stdlib.h> 50 # define xalloc malloc 51 # define xf86vsnprintf vsnprintf 52 # define xf86errno errno 53 # define xf86strtoul strtoul 54 # define xf86isspace isspace 55 # define xfree free 56 extern "C" void ErrorF(const char *f, ...); 57 extern "C" void VErrorF(const char *f, va_list args); 58 #endif 43 59 44 60 /* This is risky as it restricts call to the ANSI format type specifiers. */
Note:
See TracChangeset
for help on using the changeset viewer.