diff options
author | Tom Lane | 2006-05-30 22:12:16 +0000 |
---|---|---|
committer | Tom Lane | 2006-05-30 22:12:16 +0000 |
commit | a0ffab351e2dca12200e95c45f6edf5ddebe78b0 (patch) | |
tree | 905fee345f116de536f72d8ff8507d093646d717 /contrib/fuzzystrmatch/fuzzystrmatch.c | |
parent | e95703eac3199a389cfeace07545ee10430193a8 (diff) |
Magic blocks don't do us any good unless we use 'em ... so install one
in every shared library.
Diffstat (limited to 'contrib/fuzzystrmatch/fuzzystrmatch.c')
-rw-r--r-- | contrib/fuzzystrmatch/fuzzystrmatch.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/fuzzystrmatch/fuzzystrmatch.c b/contrib/fuzzystrmatch/fuzzystrmatch.c index 29bba52596c..9b12c8f1fd4 100644 --- a/contrib/fuzzystrmatch/fuzzystrmatch.c +++ b/contrib/fuzzystrmatch/fuzzystrmatch.c @@ -5,7 +5,7 @@ * * Joe Conway <mail@joeconway.com> * - * $PostgreSQL: pgsql/contrib/fuzzystrmatch/fuzzystrmatch.c,v 1.20 2006/03/19 22:22:56 neilc Exp $ + * $PostgreSQL: pgsql/contrib/fuzzystrmatch/fuzzystrmatch.c,v 1.21 2006/05/30 22:12:13 tgl Exp $ * Copyright (c) 2001-2006, PostgreSQL Global Development Group * ALL RIGHTS RESERVED; * @@ -45,6 +45,8 @@ #include "fuzzystrmatch.h" +PG_MODULE_MAGIC; + /* * Calculates Levenshtein Distance between two strings. * Uses simplest and fastest cost model only, i.e. assumes a cost of 1 for |