mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08:00
Apply Magnus Hagander's followup patch to correct
out-of-sync routine prototypes ... the system doesn't compile without this ...
This commit is contained in:
parent
46ced3429b
commit
4e34686a36
@ -6,7 +6,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
* Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $Id: pqcomm.h,v 1.30 1999/01/12 12:49:52 scrappy Exp $
|
* $Id: pqcomm.h,v 1.31 1999/01/17 01:45:42 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -153,16 +153,16 @@ typedef struct CancelRequestPacket
|
|||||||
|
|
||||||
|
|
||||||
/* in pqcomprim.c */
|
/* in pqcomprim.c */
|
||||||
int pqGetShort(int *, FILE *);
|
int pqGetShort(int *);
|
||||||
int pqGetLong(int *, FILE *);
|
int pqGetLong(int *);
|
||||||
int pqGetNBytes(char *, size_t, FILE *);
|
int pqGetNBytes(char *, size_t);
|
||||||
int pqGetString(char *, size_t, FILE *);
|
int pqGetString(char *, size_t);
|
||||||
int pqGetByte(FILE *);
|
int pqGetByte(void);
|
||||||
|
|
||||||
int pqPutShort(int, FILE *);
|
int pqPutShort(int);
|
||||||
int pqPutLong(int, FILE *);
|
int pqPutLong(int);
|
||||||
int pqPutNBytes(const char *, size_t, FILE *);
|
int pqPutNBytes(const char *, size_t);
|
||||||
int pqPutString(const char *, FILE *);
|
int pqPutString(const char *);
|
||||||
int pqPutByte(int, FILE *);
|
int pqPutByte(int);
|
||||||
|
|
||||||
#endif /* PQCOMM_H */
|
#endif /* PQCOMM_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user