From ab9fb12e0b52cad4db0efd5436a5fc11b6c2e18c Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 1 Apr 2006 18:26:30 +0000 Subject: r14851: Make BOOL, False and True simple aliases to the POSIX-defined bool, false and true (guaranteed to be defined by lib/replace) (This used to be commit 53fa1bdb6e0ea134c4d688e7cf3237fd25c2cc76) --- source4/include/core.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/include') 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 { -- cgit