diff options
author | Peter Eisentraut | 2016-08-30 16:00:00 +0000 |
---|---|---|
committer | Peter Eisentraut | 2016-09-30 18:04:16 +0000 |
commit | 0665023b4435a469e42289d7065c436967a022b6 (patch) | |
tree | 0c9de8cef71356a159770310f94d6f1719ed5066 /contrib/tablefunc/tablefunc.h | |
parent | a5da81359dbddfee49ea7800b43d99c204b4d31f (diff) |
Remove unnecessary prototypes
Prototypes for functions implementing V1-callable functions are no
longer necessary.
Reviewed-by: Heikki Linnakangas <[email protected]>
Reviewed-by: Thomas Munro <[email protected]>
Diffstat (limited to 'contrib/tablefunc/tablefunc.h')
-rw-r--r-- | contrib/tablefunc/tablefunc.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/contrib/tablefunc/tablefunc.h b/contrib/tablefunc/tablefunc.h index 3477ed823f9..34d44a8fa1f 100644 --- a/contrib/tablefunc/tablefunc.h +++ b/contrib/tablefunc/tablefunc.h @@ -36,13 +36,4 @@ #include "fmgr.h" -/* - * External declarations - */ -extern Datum normal_rand(PG_FUNCTION_ARGS); -extern Datum crosstab(PG_FUNCTION_ARGS); -extern Datum crosstab_hash(PG_FUNCTION_ARGS); -extern Datum connectby_text(PG_FUNCTION_ARGS); -extern Datum connectby_text_serial(PG_FUNCTION_ARGS); - #endif /* TABLEFUNC_H */ |