aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2018-02-07 08:41:14 -0500
committerRobert Haas <rhaas@postgresql.org>2018-02-07 08:42:36 -0500
commit4815dfa10f4db8835b7424da22a4011b53040606 (patch)
tree038a709cd3f5ca1090c1ce01b582983d1d79af73 /src
parent9e039015501ad4033c093dee8dfc8b414634e953 (diff)
downloadpostgresql-4815dfa10f4db8835b7424da22a4011b53040606.tar.gz
postgresql-4815dfa10f4db8835b7424da22a4011b53040606.zip
Remove prototype for fmgr() function, which no longer exists.
Commit 5ded4bd21403e143dd3eb66b92d52732fdac1945 removed the code for this function, but neglected to remove the prototype and associated comments. Dagfinn Ilmari Mannsåker Discussion: http://postgr.es/m/d8j4lmuxjzk.fsf@dalvik.ping.uio.no
Diffstat (limited to 'src')
-rw-r--r--src/include/fmgr.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/include/fmgr.h b/src/include/fmgr.h
index 665dd76b124..69786bfca85 100644
--- a/src/include/fmgr.h
+++ b/src/include/fmgr.h
@@ -730,19 +730,4 @@ extern PGDLLIMPORT fmgr_hook_type fmgr_hook;
#define FmgrHookIsNeeded(fn_oid) \
(!needs_fmgr_hook ? false : (*needs_fmgr_hook)(fn_oid))
-/*
- * !!! OLD INTERFACE !!!
- *
- * fmgr() is the only remaining vestige of the old-style caller support
- * functions. It's no longer used anywhere in the Postgres distribution,
- * but we should leave it around for a release or two to ease the transition
- * for user-supplied C functions. OidFunctionCallN() replaces it for new
- * code.
- */
-
-/*
- * DEPRECATED, DO NOT USE IN NEW CODE
- */
-extern char *fmgr(Oid procedureId,...);
-
#endif /* FMGR_H */