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/executor/executor.h | |
parent | bf5cbbf7895aa16b2e18dbe29462a4fd8baf4293 (diff) | |
download | postgresql-aaeef4d17db9ded501fa02c9ca6c00f86258b171.tar.gz postgresql-aaeef4d17db9ded501fa02c9ca6c00f86258b171.zip |
All external function definitions now have prototypes that are checked.
Diffstat (limited to 'src/include/executor/executor.h')
-rw-r--r-- | src/include/executor/executor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index 1469ff542f3..8ec81547f7f 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.4 1996/11/05 08:18:34 scrappy Exp $ + * $Id: executor.h,v 1.5 1996/11/10 03:04:59 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -142,7 +142,7 @@ extern TupleDesc ExecTypeFromTL(List *targetList); /* * prototypes from functions in execTuples.c */ -extern void ResetTupleCount(); +extern void ResetTupleCount(void); extern void DisplayTupleCount(FILE *statfp); extern void ExecAssignNodeBaseInfo(EState *estate, CommonState *basenode, Plan *parent); |