diff options
| author | xHire <xhire@tuxportal.cz> | 2009-05-24 20:13:33 +0200 |
|---|---|---|
| committer | xHire <xhire@tuxportal.cz> | 2009-05-26 01:11:54 +0200 |
| commit | b992c007c186fddf31f67a7ed0bd5789cfb9b85e (patch) | |
| tree | 8afca953f70438207634bc9a1e073bbeafe47ad6 /src/base/bool.h | |
| parent | 6ac111e0ed67187554ead8cccc241029465e8979 (diff) | |
Rectified the coding style in base .h files
Diffstat (limited to 'src/base/bool.h')
| -rw-r--r-- | src/base/bool.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/base/bool.h b/src/base/bool.h index 7334348..76a3756 100644 --- a/src/base/bool.h +++ b/src/base/bool.h @@ -1,9 +1,10 @@ - #ifndef BOOL_H -# define BOOL_H -# define bool_t int -# define TRUE 1 -# define FALSE 0 +#define BOOL_H + +#include "main.h" + +#define bool_t int +#define TRUE 1 +#define FALSE 0 -# include "main.h" -#endif +#endif /* BOOL_H */ |