summaryrefslogtreecommitdiff
path: root/source4/include/core.h
diff options
context:
space:
mode:
Diffstat (limited to 'source4/include/core.h')
-rw-r--r--source4/include/core.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/include/core.h b/source4/include/core.h
index 6ca276bf0e..f334c3df42 100644
--- a/source4/include/core.h
+++ b/source4/include/core.h
@@ -26,10 +26,10 @@
#include "libcli/util/nt_status.h"
-typedef int BOOL;
+typedef bool BOOL;
-#define False (0)
-#define True (1)
+#define False false
+#define True true
/* used to hold an arbitrary blob of data */
typedef struct datablob {