summaryrefslogtreecommitdiff
path: root/src/backend/snowball
diff options
context:
space:
mode:
authorTom Lane2015-05-24 16:20:23 +0000
committerTom Lane2015-05-24 16:20:23 +0000
commit91e79260f636ab4d5a43910b6a38bc75651ad14c (patch)
tree10a3d8b52b29ba4529aba393f5371dbd545bdfbb /src/backend/snowball
parent807b9e0dff663c5da875af7907a5106c0ff90673 (diff)
Remove no-longer-required function declarations.
Remove a bunch of "extern Datum foo(PG_FUNCTION_ARGS);" declarations that are no longer needed now that PG_FUNCTION_INFO_V1(foo) provides that. Some of these were evidently missed in commit e7128e8dbb305059, but others were cargo-culted in in code added since then. Possibly that can be blamed in part on the fact that we'd not fixed relevant documentation examples, which I've now done.
Diffstat (limited to 'src/backend/snowball')
-rw-r--r--src/backend/snowball/dict_snowball.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/backend/snowball/dict_snowball.c b/src/backend/snowball/dict_snowball.c
index bc31839bdd..63b471ea51 100644
--- a/src/backend/snowball/dict_snowball.c
+++ b/src/backend/snowball/dict_snowball.c
@@ -61,10 +61,8 @@
PG_MODULE_MAGIC;
PG_FUNCTION_INFO_V1(dsnowball_init);
-Datum dsnowball_init(PG_FUNCTION_ARGS);
PG_FUNCTION_INFO_V1(dsnowball_lexize);
-Datum dsnowball_lexize(PG_FUNCTION_ARGS);
/* List of supported modules */
typedef struct stemmer_module