diff options
| author | Bruce Momjian <bruce@momjian.us> | 1998-01-24 22:50:57 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1998-01-24 22:50:57 +0000 |
| commit | 72295139434d26c6da565faee2f50cb6fa900d43 (patch) | |
| tree | fe3868a4a1f475cc4d7adbc7ab069052b5d67b20 /src/include/executor/functions.h | |
| parent | 27317a0d7c267ef356f7620f00769363007fcb3f (diff) | |
| download | postgresql-72295139434d26c6da565faee2f50cb6fa900d43.tar.gz | |
Fix prototypes so they don't look like function definitions.
Diffstat (limited to 'src/include/executor/functions.h')
| -rw-r--r-- | src/include/executor/functions.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/include/executor/functions.h b/src/include/executor/functions.h index c6ca082971..d54afe99a3 100644 --- a/src/include/executor/functions.h +++ b/src/include/executor/functions.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: functions.h,v 1.5 1997/11/26 01:12:38 momjian Exp $ + * $Id: functions.h,v 1.6 1998/01/24 22:48:55 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -18,12 +18,10 @@ #include "nodes/primnodes.h" #include "utils/syscache.h" -extern Datum -ProjectAttribute(TupleDesc TD, TargetEntry *tlist, +extern Datum ProjectAttribute(TupleDesc TD, TargetEntry *tlist, HeapTuple tup, bool *isnullP); -extern Datum -postquel_function(Func *funcNode, char **args, +extern Datum postquel_function(Func *funcNode, char **args, bool *isNull, bool *isDone); #endif /* FUNCTIONS_H */ |
