eol style

git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/branches/ZeroRadiant.ab@184 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
TTimo
2007-11-04 03:47:06 +00:00
parent d59e1dc131
commit ab3a99dbbe
475 changed files with 193668 additions and 193668 deletions

View File

@@ -1,20 +1,20 @@
#ifndef __BYTEBOOL__
#define __BYTEBOOL__
// bool is a C++ type
// if we are compiling for C, use an enum
// this header is not really meant for direct inclusion,
// it is used by mathlib and cmdlib
#ifdef __cplusplus
typedef bool qboolean;
#define qtrue true
#define qfalse false
#else
typedef enum { qfalse, qtrue } qboolean;
#endif
typedef unsigned char byte;
#endif
#ifndef __BYTEBOOL__
#define __BYTEBOOL__
// bool is a C++ type
// if we are compiling for C, use an enum
// this header is not really meant for direct inclusion,
// it is used by mathlib and cmdlib
#ifdef __cplusplus
typedef bool qboolean;
#define qtrue true
#define qfalse false
#else
typedef enum { qfalse, qtrue } qboolean;
#endif
typedef unsigned char byte;
#endif