diff options
author | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-12-26 23:28:27 +0000 |
---|---|---|
committer | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-12-26 23:28:27 +0000 |
commit | 645b5877881c558303aa5c82863381d53a4286d7 (patch) | |
tree | c8bf458eaaa71f75b21721088dbef9baae3841be /src | |
parent | af30fe7852f37283f96cefb0d8c4465a8be97b8a (diff) | |
download | postgresql-645b5877881c558303aa5c82863381d53a4286d7.tar.gz postgresql-645b5877881c558303aa5c82863381d53a4286d7.zip |
Remove use of "bool", which user program may not have defined. This .h file
gets included by libpq-fe.h, and thus is part of the API.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/libpq/pqcomm.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/libpq/pqcomm.h b/src/include/libpq/pqcomm.h index 6ebc6dfe457..4f9a7b3340a 100644 --- a/src/include/libpq/pqcomm.h +++ b/src/include/libpq/pqcomm.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pqcomm.h,v 1.5 1996/11/05 07:41:13 scrappy Exp $ + * $Id: pqcomm.h,v 1.6 1996/12/26 23:28:27 bryanh Exp $ * * NOTES * Some of this should move to libpq.h @@ -121,9 +121,9 @@ extern int PQAsyncNotifyWaiting; /* * prototypes for functions in pqpacket.c */ -extern int PacketReceive(Port *port, PacketBuf *buf, bool nonBlocking); +extern int PacketReceive(Port *port, PacketBuf *buf, char nonBlocking); extern int PacketSend(Port *port, PacketBuf *buf, - PacketLen len, bool nonBlocking); + PacketLen len, char nonBlocking); /* extern PacketBuf* StartupInfo2PacketBuf(StartupInfo*); */ /* extern StartupInfo* PacketBuf2StartupInfo(PacketBuf*); */ |