Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 070d494

Browse files
author
Thomas G. Lockhart
committed
Clean up function declarations for the boolean type package
to use bool as the type for arguments and return values.
1 parent a21c3e3 commit 070d494

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/include/utils/builtins.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: builtins.h,v 1.26 1997/09/20 16:24:39 thomas Exp $
9+
* $Id: builtins.h,v 1.27 1997/10/09 05:07:25 thomas Exp $
1010
*
1111
* NOTES
1212
* This should normally only be included by fmgr.h.
@@ -30,11 +30,11 @@
3030
*/
3131
/* bool.c */
3232
extern bool boolin(char *b);
33-
extern char *boolout(long b);
34-
extern bool booleq(int8 arg1, int8 arg2);
35-
extern bool boolne(int8 arg1, int8 arg2);
36-
extern bool boollt(int8 arg1, int8 arg2);
37-
extern bool boolgt(int8 arg1, int8 arg2);
33+
extern char *boolout(bool b);
34+
extern bool booleq(bool arg1, bool arg2);
35+
extern bool boolne(bool arg1, bool arg2);
36+
extern bool boollt(bool arg1, bool arg2);
37+
extern bool boolgt(bool arg1, bool arg2);
3838

3939
/* char.c */
4040
extern int32 charin(char *ch);

0 commit comments

Comments
 (0)