summaryrefslogtreecommitdiff
path: root/src/base/bool.h
diff options
context:
space:
mode:
authorxHire <xhire@tuxportal.cz>2008-10-25 14:11:06 +0200
committerxHire <xhire@tuxportal.cz>2008-10-25 14:11:06 +0200
commitc8a9209d77a896bf49227e5aeccd54e91ccf29cc (patch)
tree6b7367406ebbc6ce3ea5e0c8668c75f6fb3f6ae9 /src/base/bool.h
parentcb9deba915dd7b114eeb76601eb1c8b07c1ba90f (diff)
Changed style of the code to the K&R standard
Diffstat (limited to 'src/base/bool.h')
-rw-r--r--src/base/bool.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/base/bool.h b/src/base/bool.h
index 4289878..7334348 100644
--- a/src/base/bool.h
+++ b/src/base/bool.h
@@ -1,9 +1,9 @@
#ifndef BOOL_H
-#define BOOL_H
-#define bool_t int
-#define TRUE 1
-#define FALSE 0
+# define BOOL_H
+# define bool_t int
+# define TRUE 1
+# define FALSE 0
-#include "main.h"
+# include "main.h"
#endif