Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 606252
Collapse All | Expand All

(-)vboxnetflt/include/iprt/types.h.ORIG (-6 / +1 lines)
Lines 261-272 Link Here
261
# else
261
# else
262
typedef unsigned char bool;
262
typedef unsigned char bool;
263
# endif
263
# endif
264
# ifndef true
264
enum mybool{false=0,true=1};
265
#  define true  (1)
266
# endif
267
# ifndef false
268
#  define false (0)
269
# endif
270
#endif
265
#endif
271
266
272
/**
267
/**
(-)vboxdrv/include/iprt/types.h.ORIG (-6 / +1 lines)
Lines 261-272 Link Here
261
# else
261
# else
262
typedef unsigned char bool;
262
typedef unsigned char bool;
263
# endif
263
# endif
264
# ifndef true
264
enum mybool{false=0,true=1};
265
#  define true  (1)
266
# endif
267
# ifndef false
268
#  define false (0)
269
# endif
270
#endif
265
#endif
271
266
272
/**
267
/**
(-)vboxnetadp/include/iprt/types.h.ORIG (-6 / +1 lines)
Lines 261-272 Link Here
261
# else
261
# else
262
typedef unsigned char bool;
262
typedef unsigned char bool;
263
# endif
263
# endif
264
# ifndef true
264
enum mybool{false=0,true=1};
265
#  define true  (1)
266
# endif
267
# ifndef false
268
#  define false (0)
269
# endif
270
#endif
265
#endif
271
266
272
/**
267
/**
(-)vboxpci/include/iprt/types.h.ORIG (-6 / +1 lines)
Lines 261-272 Link Here
261
# else
261
# else
262
typedef unsigned char bool;
262
typedef unsigned char bool;
263
# endif
263
# endif
264
# ifndef true
264
enum mybool{false=0,true=1};
265
#  define true  (1)
266
# endif
267
# ifndef false
268
#  define false (0)
269
# endif
270
#endif
265
#endif
271
266
272
/**
267
/**
(-)vboxdrv/r0drv/linux/string.h.ORIG (-2 / +1 lines)
Lines 32-39 Link Here
32
RT_C_DECLS_BEGIN
32
RT_C_DECLS_BEGIN
33
#ifndef bool /* Linux 2.6.19 C++ nightmare */
33
#ifndef bool /* Linux 2.6.19 C++ nightmare */
34
#define bool bool_type
34
#define bool bool_type
35
#define true true_type
35
enum mybool{false=false_type,true=true_type};
36
#define false false_type
37
#define _Bool int
36
#define _Bool int
38
#define bool_type_r0drv_string_h__
37
#define bool_type_r0drv_string_h__
39
#endif
38
#endif

Return to bug 606252