diff options
| author | Bruce Momjian <bruce@momjian.us> | 1996-11-10 03:06:38 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1996-11-10 03:06:38 +0000 |
| commit | aaeef4d17db9ded501fa02c9ca6c00f86258b171 (patch) | |
| tree | 7f27c0c7519886eda3b9ddd6fe1eb4a9d628dacb /src/include/tcop/dest.h | |
| parent | bf5cbbf7895aa16b2e18dbe29462a4fd8baf4293 (diff) | |
| download | postgresql-aaeef4d17db9ded501fa02c9ca6c00f86258b171.tar.gz | |
All external function definitions now have prototypes that are checked.
Diffstat (limited to 'src/include/tcop/dest.h')
| -rw-r--r-- | src/include/tcop/dest.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/tcop/dest.h b/src/include/tcop/dest.h index bfe2974656..47cbd225cb 100644 --- a/src/include/tcop/dest.h +++ b/src/include/tcop/dest.h @@ -26,7 +26,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: dest.h,v 1.3 1996/11/04 12:07:00 scrappy Exp $ + * $Id: dest.h,v 1.4 1996/11/10 03:06:08 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -64,14 +64,14 @@ typedef struct AttrInfo { extern void donothing(List *tuple, List *attrdesc); extern void (*DestToFunction(CommandDest dest))(); extern void EndCommand(char *commandTag, CommandDest dest); -extern void SendCopyBegin(); -extern void ReceiveCopyBegin(); +extern void SendCopyBegin(void); +extern void ReceiveCopyBegin(void); extern void NullCommand(CommandDest dest); extern void BeginCommand(char *pname, int operation, TupleDesc attinfo, bool isIntoRel, bool isIntoPortal, char *tag, CommandDest dest); -extern void ResetAppendOid(); +extern void ResetAppendOid(void); extern void UpdateAppendOid(Oid newoid); -extern Oid GetAppendOid(); +extern Oid GetAppendOid(void); #endif /* DEST_H */ |
