summaryrefslogtreecommitdiff
path: root/source4/lib/replace/replace.h
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-04-24 14:52:37 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:04:17 -0500
commit94af743baab2e32912bbc6f48e9ea54bda818593 (patch)
tree688754ac9318351059606d73e2cea3aabd059791 /source4/lib/replace/replace.h
parenta0f8ff3cbdbfe475496d210e3d25ecb5bc35fdf3 (diff)
downloadsamba-94af743baab2e32912bbc6f48e9ea54bda818593.tar.gz
samba-94af743baab2e32912bbc6f48e9ea54bda818593.tar.bz2
samba-94af743baab2e32912bbc6f48e9ea54bda818593.zip
r15203: Allow system 'bool' type to be defined in another header then stdbool.h
(This used to be commit a5a648de94014b13da3af8dfac06380c9ec26c53)
Diffstat (limited to 'source4/lib/replace/replace.h')
-rw-r--r--source4/lib/replace/replace.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/lib/replace/replace.h b/source4/lib/replace/replace.h
index 218fd4cb2a..bc1be38de0 100644
--- a/source4/lib/replace/replace.h
+++ b/source4/lib/replace/replace.h
@@ -202,7 +202,9 @@ int rep_mkstemp(char *temp);
#ifdef HAVE_STDBOOL_H
#include <stdbool.h>
-#else
+#endif
+
+#ifndef HAVE_BOOL
#define __bool_true_false_are_defined
typedef bool int;
#define false (0)