summaryrefslogtreecommitdiff
path: root/src/z-util.h
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2011-02-20 19:54:40 +0100
committerBardur Arantsson <bardur@scientician.net>2011-02-20 20:56:41 +0100
commit5fbe06613a8a9e5d8731a832ddff0e9bdce112bb (patch)
tree4ab5267304509feed1bbcf4ad265cd8597c64fce /src/z-util.h
parent420428c53fe83064331ac2e06297c8a93abc93cf (diff)
Remove redefinition of "bool" for C++ friendliness.
Diffstat (limited to 'src/z-util.h')
-rw-r--r--src/z-util.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/z-util.h b/src/z-util.h
index 3fff283d..11dbdb4e 100644
--- a/src/z-util.h
+++ b/src/z-util.h
@@ -63,14 +63,14 @@ extern errr func_problem(void);
extern errr func_failure(void);
/* Functions that return bools */
-extern bool func_true(void);
-extern bool func_false(void);
+extern bool_ func_true(void);
+extern bool_ func_false(void);
/* Test equality, prefix, suffix */
-extern bool streq(cptr s, cptr t);
-extern bool prefix(cptr s, cptr t);
-extern bool suffix(cptr s, cptr t);
+extern bool_ streq(cptr s, cptr t);
+extern bool_ prefix(cptr s, cptr t);
+extern bool_ suffix(cptr s, cptr t);
/* Print an error message */