aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas G. Lockhart <lockhart@fourpalms.org>1997-10-09 05:07:25 +0000
committerThomas G. Lockhart <lockhart@fourpalms.org>1997-10-09 05:07:25 +0000
commit070d494464288d65f2ac178785bb675387548d44 (patch)
tree1384766ecb38299b0ed1fab4880cdd87c19aed49 /src
parenta21c3e353ad52ea34f76b908fa3382f656aa2449 (diff)
downloadpostgresql-070d494464288d65f2ac178785bb675387548d44.tar.gz
postgresql-070d494464288d65f2ac178785bb675387548d44.zip
Clean up function declarations for the boolean type package
to use bool as the type for arguments and return values.
Diffstat (limited to 'src')
-rw-r--r--src/include/utils/builtins.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h
index 020de365ff8..2c09992bbc7 100644
--- a/src/include/utils/builtins.h
+++ b/src/include/utils/builtins.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: builtins.h,v 1.26 1997/09/20 16:24:39 thomas Exp $
+ * $Id: builtins.h,v 1.27 1997/10/09 05:07:25 thomas Exp $
*
* NOTES
* This should normally only be included by fmgr.h.
@@ -30,11 +30,11 @@
*/
/* bool.c */
extern bool boolin(char *b);
-extern char *boolout(long b);
-extern bool booleq(int8 arg1, int8 arg2);
-extern bool boolne(int8 arg1, int8 arg2);
-extern bool boollt(int8 arg1, int8 arg2);
-extern bool boolgt(int8 arg1, int8 arg2);
+extern char *boolout(bool b);
+extern bool booleq(bool arg1, bool arg2);
+extern bool boolne(bool arg1, bool arg2);
+extern bool boollt(bool arg1, bool arg2);
+extern bool boolgt(bool arg1, bool arg2);
/* char.c */
extern int32 charin(char *ch);