diff --git a/contrib/chkpass/chkpass.c b/contrib/chkpass/chkpass.c
index 60e71df2d86b2ed122f28238bb3eaee4617da6a1..b4429adac02423c9748f627498382b4620b640bb 100644
--- a/contrib/chkpass/chkpass.c
+++ b/contrib/chkpass/chkpass.c
@@ -4,7 +4,7 @@
  * darcy@druid.net
  * http://www.druid.net/darcy/
  *
- * $Id: chkpass.c,v 1.8 2002/08/29 12:18:20 darcy Exp $
+ * $Id: chkpass.c,v 1.9 2002/10/26 15:00:59 tgl Exp $
  * best viewed with tabs set to 4
  */
 
@@ -62,7 +62,7 @@ verify_pass(const char *str)
 /*
  * CHKPASS reader.
  */
-PG_FUNCTION_INFO_V1(chkpass_in)
+PG_FUNCTION_INFO_V1(chkpass_in);
 Datum
 chkpass_in(PG_FUNCTION_ARGS)
 {
@@ -110,7 +110,7 @@ chkpass_in(PG_FUNCTION_ARGS)
  * Just like any string but we know it is max 15 (13 plus colon and terminator.)
  */
 
-PG_FUNCTION_INFO_V1(chkpass_out)
+PG_FUNCTION_INFO_V1(chkpass_out);
 Datum
 chkpass_out(PG_FUNCTION_ARGS)
 {
@@ -134,7 +134,7 @@ chkpass_out(PG_FUNCTION_ARGS)
  * special output function that doesn't output the colon
  */
 
-PG_FUNCTION_INFO_V1(chkpass_rout)
+PG_FUNCTION_INFO_V1(chkpass_rout);
 Datum
 chkpass_rout(PG_FUNCTION_ARGS)
 {
@@ -158,7 +158,7 @@ chkpass_rout(PG_FUNCTION_ARGS)
  * Boolean tests
  */
 
-PG_FUNCTION_INFO_V1(chkpass_eq)
+PG_FUNCTION_INFO_V1(chkpass_eq);
 Datum
 chkpass_eq(PG_FUNCTION_ARGS)
 {
@@ -177,7 +177,7 @@ chkpass_eq(PG_FUNCTION_ARGS)
 	PG_RETURN_BOOL(strcmp(a1->password, crypt(str, a1->password)) == 0);
 }
 
-PG_FUNCTION_INFO_V1(chkpass_ne)
+PG_FUNCTION_INFO_V1(chkpass_ne);
 Datum
 chkpass_ne(PG_FUNCTION_ARGS)
 {
diff --git a/src/backend/utils/mb/conversion_procs/ascii_and_mic/ascii_and_mic.c b/src/backend/utils/mb/conversion_procs/ascii_and_mic/ascii_and_mic.c
index a83eaae1f4d9a9c93ad373d9ba76513b8a6029f7..a2818ed1ad10238e8b3c0f2673e83979f26f4ca9 100644
--- a/src/backend/utils/mb/conversion_procs/ascii_and_mic/ascii_and_mic.c
+++ b/src/backend/utils/mb/conversion_procs/ascii_and_mic/ascii_and_mic.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/ascii_and_mic/ascii_and_mic.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/ascii_and_mic/ascii_and_mic.c,v 1.5 2002/10/26 15:00:59 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -15,8 +15,8 @@
 #include "fmgr.h"
 #include "mb/pg_wchar.h"
 
-PG_FUNCTION_INFO_V1(ascii_to_mic)
-PG_FUNCTION_INFO_V1(mic_to_ascii)
+PG_FUNCTION_INFO_V1(ascii_to_mic);
+PG_FUNCTION_INFO_V1(mic_to_ascii);
 
 extern Datum ascii_to_mic(PG_FUNCTION_ARGS);
 extern Datum mic_to_ascii(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/cyrillic_and_mic/cyrillic_and_mic.c b/src/backend/utils/mb/conversion_procs/cyrillic_and_mic/cyrillic_and_mic.c
index edf0710242aeb97e76182ae3b03eaedecca12863..ef3a07fc215d65e59a74e7636586789e1aa90d4d 100644
--- a/src/backend/utils/mb/conversion_procs/cyrillic_and_mic/cyrillic_and_mic.c
+++ b/src/backend/utils/mb/conversion_procs/cyrillic_and_mic/cyrillic_and_mic.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/cyrillic_and_mic/cyrillic_and_mic.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/cyrillic_and_mic/cyrillic_and_mic.c,v 1.5 2002/10/26 15:00:59 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,26 +17,26 @@
 
 #define ENCODING_GROWTH_RATE 4
 
-PG_FUNCTION_INFO_V1(koi8r_to_mic)
-PG_FUNCTION_INFO_V1(mic_to_koi8r)
-PG_FUNCTION_INFO_V1(iso_to_mic)
-PG_FUNCTION_INFO_V1(mic_to_iso)
-PG_FUNCTION_INFO_V1(win1251_to_mic)
-PG_FUNCTION_INFO_V1(mic_to_win1251)
-PG_FUNCTION_INFO_V1(alt_to_mic)
-PG_FUNCTION_INFO_V1(mic_to_alt)
-PG_FUNCTION_INFO_V1(koi8r_to_win1251)
-PG_FUNCTION_INFO_V1(win1251_to_koi8r)
-PG_FUNCTION_INFO_V1(koi8r_to_alt)
-PG_FUNCTION_INFO_V1(alt_to_koi8r)
-PG_FUNCTION_INFO_V1(alt_to_win1251)
-PG_FUNCTION_INFO_V1(win1251_to_alt)
-PG_FUNCTION_INFO_V1(iso_to_koi8r)
-PG_FUNCTION_INFO_V1(koi8r_to_iso)
-PG_FUNCTION_INFO_V1(iso_to_win1251)
-PG_FUNCTION_INFO_V1(win1251_to_iso)
-PG_FUNCTION_INFO_V1(iso_to_alt)
-PG_FUNCTION_INFO_V1(alt_to_iso)
+PG_FUNCTION_INFO_V1(koi8r_to_mic);
+PG_FUNCTION_INFO_V1(mic_to_koi8r);
+PG_FUNCTION_INFO_V1(iso_to_mic);
+PG_FUNCTION_INFO_V1(mic_to_iso);
+PG_FUNCTION_INFO_V1(win1251_to_mic);
+PG_FUNCTION_INFO_V1(mic_to_win1251);
+PG_FUNCTION_INFO_V1(alt_to_mic);
+PG_FUNCTION_INFO_V1(mic_to_alt);
+PG_FUNCTION_INFO_V1(koi8r_to_win1251);
+PG_FUNCTION_INFO_V1(win1251_to_koi8r);
+PG_FUNCTION_INFO_V1(koi8r_to_alt);
+PG_FUNCTION_INFO_V1(alt_to_koi8r);
+PG_FUNCTION_INFO_V1(alt_to_win1251);
+PG_FUNCTION_INFO_V1(win1251_to_alt);
+PG_FUNCTION_INFO_V1(iso_to_koi8r);
+PG_FUNCTION_INFO_V1(koi8r_to_iso);
+PG_FUNCTION_INFO_V1(iso_to_win1251);
+PG_FUNCTION_INFO_V1(win1251_to_iso);
+PG_FUNCTION_INFO_V1(iso_to_alt);
+PG_FUNCTION_INFO_V1(alt_to_iso);
 
 extern Datum koi8r_to_mic(PG_FUNCTION_ARGS);
 extern Datum mic_to_koi8r(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/euc_cn_and_mic/euc_cn_and_mic.c b/src/backend/utils/mb/conversion_procs/euc_cn_and_mic/euc_cn_and_mic.c
index e757d341025bdbe5228178c291b1886969d483c8..2b046f49c424c86588e1bf3f32b42ff4fb854d6e 100644
--- a/src/backend/utils/mb/conversion_procs/euc_cn_and_mic/euc_cn_and_mic.c
+++ b/src/backend/utils/mb/conversion_procs/euc_cn_and_mic/euc_cn_and_mic.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/euc_cn_and_mic/euc_cn_and_mic.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/euc_cn_and_mic/euc_cn_and_mic.c,v 1.5 2002/10/26 15:00:59 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -15,8 +15,8 @@
 #include "fmgr.h"
 #include "mb/pg_wchar.h"
 
-PG_FUNCTION_INFO_V1(euc_cn_to_mic)
-PG_FUNCTION_INFO_V1(mic_to_euc_cn)
+PG_FUNCTION_INFO_V1(euc_cn_to_mic);
+PG_FUNCTION_INFO_V1(mic_to_euc_cn);
 
 extern Datum euc_cn_to_mic(PG_FUNCTION_ARGS);
 extern Datum mic_to_euc_cn(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/euc_jp_and_sjis.c b/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/euc_jp_and_sjis.c
index 6c5ccc332a7b6deb1154de69ee4a7ce684a7dd8c..a8619fb5927a64cc4053270e098c7693411bc831 100644
--- a/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/euc_jp_and_sjis.c
+++ b/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/euc_jp_and_sjis.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/euc_jp_and_sjis.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/euc_jp_and_sjis.c,v 1.5 2002/10/26 15:00:59 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -29,12 +29,12 @@
 
 #define ENCODING_GROWTH_RATE 4
 
-PG_FUNCTION_INFO_V1(euc_jp_to_sjis)
-PG_FUNCTION_INFO_V1(sjis_to_euc_jp)
-PG_FUNCTION_INFO_V1(euc_jp_to_mic)
-PG_FUNCTION_INFO_V1(mic_to_euc_jp)
-PG_FUNCTION_INFO_V1(sjis_to_mic)
-PG_FUNCTION_INFO_V1(mic_to_sjis)
+PG_FUNCTION_INFO_V1(euc_jp_to_sjis);
+PG_FUNCTION_INFO_V1(sjis_to_euc_jp);
+PG_FUNCTION_INFO_V1(euc_jp_to_mic);
+PG_FUNCTION_INFO_V1(mic_to_euc_jp);
+PG_FUNCTION_INFO_V1(sjis_to_mic);
+PG_FUNCTION_INFO_V1(mic_to_sjis);
 
 extern Datum euc_jp_to_sjis(PG_FUNCTION_ARGS);
 extern Datum sjis_to_euc_jp(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/euc_kr_and_mic/euc_kr_and_mic.c b/src/backend/utils/mb/conversion_procs/euc_kr_and_mic/euc_kr_and_mic.c
index 079686d65e7d8b43e7019db484696aea796f3a66..6c82401c20ffc325bd098430bbaa81093ed8aee6 100644
--- a/src/backend/utils/mb/conversion_procs/euc_kr_and_mic/euc_kr_and_mic.c
+++ b/src/backend/utils/mb/conversion_procs/euc_kr_and_mic/euc_kr_and_mic.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/euc_kr_and_mic/euc_kr_and_mic.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/euc_kr_and_mic/euc_kr_and_mic.c,v 1.5 2002/10/26 15:00:59 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -15,8 +15,8 @@
 #include "fmgr.h"
 #include "mb/pg_wchar.h"
 
-PG_FUNCTION_INFO_V1(euc_kr_to_mic)
-PG_FUNCTION_INFO_V1(mic_to_euc_kr)
+PG_FUNCTION_INFO_V1(euc_kr_to_mic);
+PG_FUNCTION_INFO_V1(mic_to_euc_kr);
 
 extern Datum euc_kr_to_mic(PG_FUNCTION_ARGS);
 extern Datum mic_to_euc_kr(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/euc_tw_and_big5/euc_tw_and_big5.c b/src/backend/utils/mb/conversion_procs/euc_tw_and_big5/euc_tw_and_big5.c
index d76fffbfff86f4786fe493eafc427b34b5dbf2b3..72fda78f49b401846ab6ca9da4478a581fc49fb8 100644
--- a/src/backend/utils/mb/conversion_procs/euc_tw_and_big5/euc_tw_and_big5.c
+++ b/src/backend/utils/mb/conversion_procs/euc_tw_and_big5/euc_tw_and_big5.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/euc_tw_and_big5/euc_tw_and_big5.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/euc_tw_and_big5/euc_tw_and_big5.c,v 1.5 2002/10/26 15:00:59 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,12 +17,12 @@
 
 #define ENCODING_GROWTH_RATE 4
 
-PG_FUNCTION_INFO_V1(euc_tw_to_big5)
-PG_FUNCTION_INFO_V1(big5_to_euc_tw)
-PG_FUNCTION_INFO_V1(euc_tw_to_mic)
-PG_FUNCTION_INFO_V1(mic_to_euc_tw)
-PG_FUNCTION_INFO_V1(big5_to_mic)
-PG_FUNCTION_INFO_V1(mic_to_big5)
+PG_FUNCTION_INFO_V1(euc_tw_to_big5);
+PG_FUNCTION_INFO_V1(big5_to_euc_tw);
+PG_FUNCTION_INFO_V1(euc_tw_to_mic);
+PG_FUNCTION_INFO_V1(mic_to_euc_tw);
+PG_FUNCTION_INFO_V1(big5_to_mic);
+PG_FUNCTION_INFO_V1(mic_to_big5);
 
 extern Datum euc_tw_to_big5(PG_FUNCTION_ARGS);
 extern Datum big5_to_euc_tw(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/latin2_and_win1250/latin2_and_win1250.c b/src/backend/utils/mb/conversion_procs/latin2_and_win1250/latin2_and_win1250.c
index 0c382f151ba8b1adc2092e7af649d46e0ae4d8e8..4e9aec470aa9d5bfcdc350fdb1a59fd91941d059 100644
--- a/src/backend/utils/mb/conversion_procs/latin2_and_win1250/latin2_and_win1250.c
+++ b/src/backend/utils/mb/conversion_procs/latin2_and_win1250/latin2_and_win1250.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/latin2_and_win1250/latin2_and_win1250.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/latin2_and_win1250/latin2_and_win1250.c,v 1.5 2002/10/26 15:01:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,12 +17,12 @@
 
 #define ENCODING_GROWTH_RATE 4
 
-PG_FUNCTION_INFO_V1(latin2_to_mic)
-PG_FUNCTION_INFO_V1(mic_to_latin2)
-PG_FUNCTION_INFO_V1(win1250_to_mic)
-PG_FUNCTION_INFO_V1(mic_to_win1250)
-PG_FUNCTION_INFO_V1(latin2_to_win1250)
-PG_FUNCTION_INFO_V1(win1250_to_latin2)
+PG_FUNCTION_INFO_V1(latin2_to_mic);
+PG_FUNCTION_INFO_V1(mic_to_latin2);
+PG_FUNCTION_INFO_V1(win1250_to_mic);
+PG_FUNCTION_INFO_V1(mic_to_win1250);
+PG_FUNCTION_INFO_V1(latin2_to_win1250);
+PG_FUNCTION_INFO_V1(win1250_to_latin2);
 
 extern Datum latin2_to_mic(PG_FUNCTION_ARGS);
 extern Datum mic_to_latin2(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/latin_and_mic/latin_and_mic.c b/src/backend/utils/mb/conversion_procs/latin_and_mic/latin_and_mic.c
index 17c98b01159710a944ef62a67336da0fa4d4866e..c3389c01921a63b6a3d03fdc96211ecf69a53ad9 100644
--- a/src/backend/utils/mb/conversion_procs/latin_and_mic/latin_and_mic.c
+++ b/src/backend/utils/mb/conversion_procs/latin_and_mic/latin_and_mic.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/latin_and_mic/latin_and_mic.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/latin_and_mic/latin_and_mic.c,v 1.5 2002/10/26 15:01:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -15,12 +15,12 @@
 #include "fmgr.h"
 #include "mb/pg_wchar.h"
 
-PG_FUNCTION_INFO_V1(latin1_to_mic)
-PG_FUNCTION_INFO_V1(mic_to_latin1)
-PG_FUNCTION_INFO_V1(latin3_to_mic)
-PG_FUNCTION_INFO_V1(mic_to_latin3)
-PG_FUNCTION_INFO_V1(latin4_to_mic)
-PG_FUNCTION_INFO_V1(mic_to_latin4)
+PG_FUNCTION_INFO_V1(latin1_to_mic);
+PG_FUNCTION_INFO_V1(mic_to_latin1);
+PG_FUNCTION_INFO_V1(latin3_to_mic);
+PG_FUNCTION_INFO_V1(mic_to_latin3);
+PG_FUNCTION_INFO_V1(latin4_to_mic);
+PG_FUNCTION_INFO_V1(mic_to_latin4);
 
 extern Datum latin1_to_mic(PG_FUNCTION_ARGS);
 extern Datum mic_to_latin1(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_ascii/utf8_and_ascii.c b/src/backend/utils/mb/conversion_procs/utf8_and_ascii/utf8_and_ascii.c
index b3f529a4ab1640b46d5b41db07b00616b8af683c..0de1cc2c589b945576ab57a2c17d2664734c4116 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_ascii/utf8_and_ascii.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_ascii/utf8_and_ascii.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_ascii/utf8_and_ascii.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_ascii/utf8_and_ascii.c,v 1.5 2002/10/26 15:01:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -15,8 +15,8 @@
 #include "fmgr.h"
 #include "mb/pg_wchar.h"
 
-PG_FUNCTION_INFO_V1(ascii_to_utf8)
-PG_FUNCTION_INFO_V1(utf8_to_ascii)
+PG_FUNCTION_INFO_V1(ascii_to_utf8);
+PG_FUNCTION_INFO_V1(utf8_to_ascii);
 
 extern Datum ascii_to_utf8(PG_FUNCTION_ARGS);
 extern Datum utf8_to_ascii(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_big5/utf8_and_big5.c b/src/backend/utils/mb/conversion_procs/utf8_and_big5/utf8_and_big5.c
index 5c9aad04d2dde1f8cf0dd8b4a65246894db7dd71..d3a76821fbcc28ba53478aa3aaa66ad9dd0d8200 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_big5/utf8_and_big5.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_big5/utf8_and_big5.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_big5/utf8_and_big5.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_big5/utf8_and_big5.c,v 1.5 2002/10/26 15:01:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,8 +17,8 @@
 #include "../../Unicode/big5_to_utf8.map"
 #include "../../Unicode/utf8_to_big5.map"
 
-PG_FUNCTION_INFO_V1(big5_to_utf8)
-PG_FUNCTION_INFO_V1(utf8_to_big5)
+PG_FUNCTION_INFO_V1(big5_to_utf8);
+PG_FUNCTION_INFO_V1(utf8_to_big5);
 
 extern Datum big5_to_utf8(PG_FUNCTION_ARGS);
 extern Datum utf8_to_big5(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic/utf8_and_cyrillic.c b/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic/utf8_and_cyrillic.c
index e88201c9b090e3058d61d35121f0db820ca88c73..d4c4f86fb8a5320a864c656d5427082f5c5c9ab8 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic/utf8_and_cyrillic.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic/utf8_and_cyrillic.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic/utf8_and_cyrillic.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic/utf8_and_cyrillic.c,v 1.5 2002/10/26 15:01:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -21,12 +21,12 @@
 #include "../../Unicode/utf8_to_alt.map"
 #include "../../Unicode/alt_to_utf8.map"
 
-PG_FUNCTION_INFO_V1(utf8_to_koi8r)
-PG_FUNCTION_INFO_V1(koi8r_to_utf8)
-PG_FUNCTION_INFO_V1(utf8_to_win1251)
-PG_FUNCTION_INFO_V1(win1251_to_utf8)
-PG_FUNCTION_INFO_V1(utf8_to_alt)
-PG_FUNCTION_INFO_V1(alt_to_utf8)
+PG_FUNCTION_INFO_V1(utf8_to_koi8r);
+PG_FUNCTION_INFO_V1(koi8r_to_utf8);
+PG_FUNCTION_INFO_V1(utf8_to_win1251);
+PG_FUNCTION_INFO_V1(win1251_to_utf8);
+PG_FUNCTION_INFO_V1(utf8_to_alt);
+PG_FUNCTION_INFO_V1(alt_to_utf8);
 
 extern Datum utf8_to_koi8r(PG_FUNCTION_ARGS);
 extern Datum koi8r_to_utf8(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn/utf8_and_euc_cn.c b/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn/utf8_and_euc_cn.c
index 2a5f02416f61e4f154edeae27c3bb6d144805ca7..79f54565367ba2036c3d3e85667de69db256dc13 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn/utf8_and_euc_cn.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn/utf8_and_euc_cn.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn/utf8_and_euc_cn.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn/utf8_and_euc_cn.c,v 1.5 2002/10/26 15:01:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,8 +17,8 @@
 #include "../../Unicode/euc_cn_to_utf8.map"
 #include "../../Unicode/utf8_to_euc_cn.map"
 
-PG_FUNCTION_INFO_V1(euc_cn_to_utf8)
-PG_FUNCTION_INFO_V1(utf8_to_euc_cn)
+PG_FUNCTION_INFO_V1(euc_cn_to_utf8);
+PG_FUNCTION_INFO_V1(utf8_to_euc_cn);
 
 extern Datum euc_cn_to_utf8(PG_FUNCTION_ARGS);
 extern Datum utf8_to_euc_cn(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp/utf8_and_euc_jp.c b/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp/utf8_and_euc_jp.c
index f58aa497b4459f65c9e3bd4f88c0c0dbd7d1ec7e..9fa364c2b2719cc478ad203aa6f42a1bcde58c62 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp/utf8_and_euc_jp.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp/utf8_and_euc_jp.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp/utf8_and_euc_jp.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp/utf8_and_euc_jp.c,v 1.5 2002/10/26 15:01:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,8 +17,8 @@
 #include "../../Unicode/euc_jp_to_utf8.map"
 #include "../../Unicode/utf8_to_euc_jp.map"
 
-PG_FUNCTION_INFO_V1(euc_jp_to_utf8)
-PG_FUNCTION_INFO_V1(utf8_to_euc_jp)
+PG_FUNCTION_INFO_V1(euc_jp_to_utf8);
+PG_FUNCTION_INFO_V1(utf8_to_euc_jp);
 
 extern Datum euc_jp_to_utf8(PG_FUNCTION_ARGS);
 extern Datum utf8_to_euc_jp(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr/utf8_and_euc_kr.c b/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr/utf8_and_euc_kr.c
index cd19dce34889af096bfffa84710da269a7472b80..be13ee25a070eb21d9b4c5a42b6b292b5980a0fe 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr/utf8_and_euc_kr.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr/utf8_and_euc_kr.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr/utf8_and_euc_kr.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr/utf8_and_euc_kr.c,v 1.5 2002/10/26 15:01:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,8 +17,8 @@
 #include "../../Unicode/euc_kr_to_utf8.map"
 #include "../../Unicode/utf8_to_euc_kr.map"
 
-PG_FUNCTION_INFO_V1(euc_kr_to_utf8)
-PG_FUNCTION_INFO_V1(utf8_to_euc_kr)
+PG_FUNCTION_INFO_V1(euc_kr_to_utf8);
+PG_FUNCTION_INFO_V1(utf8_to_euc_kr);
 
 extern Datum euc_kr_to_utf8(PG_FUNCTION_ARGS);
 extern Datum utf8_to_euc_kr(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw/utf8_and_euc_tw.c b/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw/utf8_and_euc_tw.c
index c6116ae6a31d2de55b2df13e1b1416a43fff024e..f80a8f1701b420b27499e0a60ee027765e34c100 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw/utf8_and_euc_tw.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw/utf8_and_euc_tw.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw/utf8_and_euc_tw.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw/utf8_and_euc_tw.c,v 1.5 2002/10/26 15:01:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,8 +17,8 @@
 #include "../../Unicode/euc_tw_to_utf8.map"
 #include "../../Unicode/utf8_to_euc_tw.map"
 
-PG_FUNCTION_INFO_V1(euc_tw_to_utf8)
-PG_FUNCTION_INFO_V1(utf8_to_euc_tw)
+PG_FUNCTION_INFO_V1(euc_tw_to_utf8);
+PG_FUNCTION_INFO_V1(utf8_to_euc_tw);
 
 extern Datum euc_tw_to_utf8(PG_FUNCTION_ARGS);
 extern Datum utf8_to_euc_tw(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_gb18030/utf8_and_gb18030.c b/src/backend/utils/mb/conversion_procs/utf8_and_gb18030/utf8_and_gb18030.c
index 611d0a0cac46a478f827273dc92ce1a37cd25b08..65c7d540ba1dfaa129827f381908b5a959bc0f61 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_gb18030/utf8_and_gb18030.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_gb18030/utf8_and_gb18030.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_gb18030/utf8_and_gb18030.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_gb18030/utf8_and_gb18030.c,v 1.5 2002/10/26 15:01:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,8 +17,8 @@
 #include "../../Unicode/gb18030_to_utf8.map"
 #include "../../Unicode/utf8_to_gb18030.map"
 
-PG_FUNCTION_INFO_V1(gb18030_to_utf8)
-PG_FUNCTION_INFO_V1(utf8_to_gb18030)
+PG_FUNCTION_INFO_V1(gb18030_to_utf8);
+PG_FUNCTION_INFO_V1(utf8_to_gb18030);
 
 extern Datum gb18030_to_utf8(PG_FUNCTION_ARGS);
 extern Datum utf8_to_gb18030(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_gbk/utf8_and_gbk.c b/src/backend/utils/mb/conversion_procs/utf8_and_gbk/utf8_and_gbk.c
index 85b0480bef2a46872ed259c0f9361931a25b3940..660c52d7e1ebbe5c8fa68946e8d9e202c9b4331f 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_gbk/utf8_and_gbk.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_gbk/utf8_and_gbk.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_gbk/utf8_and_gbk.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_gbk/utf8_and_gbk.c,v 1.5 2002/10/26 15:01:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,8 +17,8 @@
 #include "../../Unicode/gbk_to_utf8.map"
 #include "../../Unicode/utf8_to_gbk.map"
 
-PG_FUNCTION_INFO_V1(gbk_to_utf8)
-PG_FUNCTION_INFO_V1(utf8_to_gbk)
+PG_FUNCTION_INFO_V1(gbk_to_utf8);
+PG_FUNCTION_INFO_V1(utf8_to_gbk);
 
 extern Datum gbk_to_utf8(PG_FUNCTION_ARGS);
 extern Datum utf8_to_gbk(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_iso8859/utf8_and_iso8859.c b/src/backend/utils/mb/conversion_procs/utf8_and_iso8859/utf8_and_iso8859.c
index 7e19421c8942227826163dad87d41e9646574ecc..a7252ae76a38192813bd5ba29533391dacb438e1 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_iso8859/utf8_and_iso8859.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_iso8859/utf8_and_iso8859.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_iso8859/utf8_and_iso8859.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_iso8859/utf8_and_iso8859.c,v 1.5 2002/10/26 15:01:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -41,8 +41,8 @@
 #include "../../Unicode/iso8859_15_to_utf8.map"
 #include "../../Unicode/iso8859_16_to_utf8.map"
 
-PG_FUNCTION_INFO_V1(iso8859_to_utf8)
-PG_FUNCTION_INFO_V1(utf8_to_iso8859)
+PG_FUNCTION_INFO_V1(iso8859_to_utf8);
+PG_FUNCTION_INFO_V1(utf8_to_iso8859);
 
 extern Datum iso8859_to_utf8(PG_FUNCTION_ARGS);
 extern Datum utf8_to_iso8859(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1/utf8_and_iso8859_1.c b/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1/utf8_and_iso8859_1.c
index ed36bc33ceb466043f6c8b16debf620d05e9284f..78ca64e6d86c28f4c64438de917cd3f7139f6bdf 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1/utf8_and_iso8859_1.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1/utf8_and_iso8859_1.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1/utf8_and_iso8859_1.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1/utf8_and_iso8859_1.c,v 1.5 2002/10/26 15:01:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -15,8 +15,8 @@
 #include "fmgr.h"
 #include "mb/pg_wchar.h"
 
-PG_FUNCTION_INFO_V1(iso8859_1_to_utf8)
-PG_FUNCTION_INFO_V1(utf8_to_iso8859_1)
+PG_FUNCTION_INFO_V1(iso8859_1_to_utf8);
+PG_FUNCTION_INFO_V1(utf8_to_iso8859_1);
 
 extern Datum iso8859_1_to_utf8(PG_FUNCTION_ARGS);
 extern Datum utf8_to_iso8859_1(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_johab/utf8_and_johab.c b/src/backend/utils/mb/conversion_procs/utf8_and_johab/utf8_and_johab.c
index dc9ec630c2dd3b6a72bde1e3f390a05820beff83..c6a312cf111912fef7f43eb43b7a14f4761994b5 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_johab/utf8_and_johab.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_johab/utf8_and_johab.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_johab/utf8_and_johab.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_johab/utf8_and_johab.c,v 1.5 2002/10/26 15:01:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,8 +17,8 @@
 #include "../../Unicode/johab_to_utf8.map"
 #include "../../Unicode/utf8_to_johab.map"
 
-PG_FUNCTION_INFO_V1(johab_to_utf8)
-PG_FUNCTION_INFO_V1(utf8_to_johab)
+PG_FUNCTION_INFO_V1(johab_to_utf8);
+PG_FUNCTION_INFO_V1(utf8_to_johab);
 
 extern Datum johab_to_utf8(PG_FUNCTION_ARGS);
 extern Datum utf8_to_johab(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_sjis/utf8_and_sjis.c b/src/backend/utils/mb/conversion_procs/utf8_and_sjis/utf8_and_sjis.c
index ae53ed71bff96d54314b2de8026ce5c2234baae5..dd7bc251c21b6ff9c331478b4492263a682f75b2 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_sjis/utf8_and_sjis.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_sjis/utf8_and_sjis.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_sjis/utf8_and_sjis.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_sjis/utf8_and_sjis.c,v 1.5 2002/10/26 15:01:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,8 +17,8 @@
 #include "../../Unicode/sjis_to_utf8.map"
 #include "../../Unicode/utf8_to_sjis.map"
 
-PG_FUNCTION_INFO_V1(sjis_to_utf8)
-PG_FUNCTION_INFO_V1(utf8_to_sjis)
+PG_FUNCTION_INFO_V1(sjis_to_utf8);
+PG_FUNCTION_INFO_V1(utf8_to_sjis);
 
 extern Datum sjis_to_utf8(PG_FUNCTION_ARGS);
 extern Datum utf8_to_sjis(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_tcvn/utf8_and_tcvn.c b/src/backend/utils/mb/conversion_procs/utf8_and_tcvn/utf8_and_tcvn.c
index df1cfe6c13535b976ab2290fe5cc5a597041b579..80ffbd8a608f19710db9c1ea6be24739e83ed90a 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_tcvn/utf8_and_tcvn.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_tcvn/utf8_and_tcvn.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_tcvn/Attic/utf8_and_tcvn.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_tcvn/Attic/utf8_and_tcvn.c,v 1.5 2002/10/26 15:01:00 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,8 +17,8 @@
 #include "../../Unicode/tcvn_to_utf8.map"
 #include "../../Unicode/utf8_to_tcvn.map"
 
-PG_FUNCTION_INFO_V1(tcvn_to_utf8)
-PG_FUNCTION_INFO_V1(utf8_to_tcvn)
+PG_FUNCTION_INFO_V1(tcvn_to_utf8);
+PG_FUNCTION_INFO_V1(utf8_to_tcvn);
 
 extern Datum tcvn_to_utf8(PG_FUNCTION_ARGS);
 extern Datum utf8_to_tcvn(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_uhc/utf8_and_uhc.c b/src/backend/utils/mb/conversion_procs/utf8_and_uhc/utf8_and_uhc.c
index 95ba7a7134ae314c360e36a69b35b5d44f5af3db..aec8537805fc96167cf76e499f93d51754879703 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_uhc/utf8_and_uhc.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_uhc/utf8_and_uhc.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_uhc/utf8_and_uhc.c,v 1.4 2002/09/13 06:41:17 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_uhc/utf8_and_uhc.c,v 1.5 2002/10/26 15:01:01 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,8 +17,8 @@
 #include "../../Unicode/uhc_to_utf8.map"
 #include "../../Unicode/utf8_to_uhc.map"
 
-PG_FUNCTION_INFO_V1(uhc_to_utf8)
-PG_FUNCTION_INFO_V1(utf8_to_uhc)
+PG_FUNCTION_INFO_V1(uhc_to_utf8);
+PG_FUNCTION_INFO_V1(utf8_to_uhc);
 
 extern Datum uhc_to_utf8(PG_FUNCTION_ARGS);
 extern Datum utf8_to_uhc(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_win1250/utf8_and_win1250.c b/src/backend/utils/mb/conversion_procs/utf8_and_win1250/utf8_and_win1250.c
index ca04e9eba13c240492c89181f64dc88b4f38537a..d6e066137a527d0865682a35df8c5ad41091f571 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_win1250/utf8_and_win1250.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_win1250/utf8_and_win1250.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_win1250/Attic/utf8_and_win1250.c,v 1.4 2002/09/13 06:41:18 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_win1250/Attic/utf8_and_win1250.c,v 1.5 2002/10/26 15:01:01 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,8 +17,8 @@
 #include "../../Unicode/utf8_to_win1250.map"
 #include "../../Unicode/win1250_to_utf8.map"
 
-PG_FUNCTION_INFO_V1(utf_to_win1250)
-PG_FUNCTION_INFO_V1(win1250_to_utf)
+PG_FUNCTION_INFO_V1(utf_to_win1250);
+PG_FUNCTION_INFO_V1(win1250_to_utf);
 
 extern Datum utf_to_win1250(PG_FUNCTION_ARGS);
 extern Datum win1250_to_utf(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_win1256/utf8_and_win1256.c b/src/backend/utils/mb/conversion_procs/utf8_and_win1256/utf8_and_win1256.c
index 1a9f326cc0b70f4bf1a88d318f6dba069429efc7..b7fd63796b9917fa0f9ae1a028d72804bec386f9 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_win1256/utf8_and_win1256.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_win1256/utf8_and_win1256.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_win1256/Attic/utf8_and_win1256.c,v 1.4 2002/09/13 06:41:18 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_win1256/Attic/utf8_and_win1256.c,v 1.5 2002/10/26 15:01:01 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,8 +17,8 @@
 #include "../../Unicode/utf8_to_win1256.map"
 #include "../../Unicode/win1256_to_utf8.map"
 
-PG_FUNCTION_INFO_V1(utf_to_win1256)
-PG_FUNCTION_INFO_V1(win1256_to_utf)
+PG_FUNCTION_INFO_V1(utf_to_win1256);
+PG_FUNCTION_INFO_V1(win1256_to_utf);
 
 extern Datum utf_to_win1256(PG_FUNCTION_ARGS);
 extern Datum win1256_to_utf(PG_FUNCTION_ARGS);
diff --git a/src/backend/utils/mb/conversion_procs/utf8_and_win874/utf8_and_win874.c b/src/backend/utils/mb/conversion_procs/utf8_and_win874/utf8_and_win874.c
index 12e709572f88078017e3abf02393df0dd04ac00c..0b5e7b2d8d5ad348eb1f39fcf00f0c662cdec6ab 100644
--- a/src/backend/utils/mb/conversion_procs/utf8_and_win874/utf8_and_win874.c
+++ b/src/backend/utils/mb/conversion_procs/utf8_and_win874/utf8_and_win874.c
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_win874/Attic/utf8_and_win874.c,v 1.4 2002/09/13 06:41:18 ishii Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_win874/Attic/utf8_and_win874.c,v 1.5 2002/10/26 15:01:01 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,8 +17,8 @@
 #include "../../Unicode/utf8_to_win874.map"
 #include "../../Unicode/win874_to_utf8.map"
 
-PG_FUNCTION_INFO_V1(utf_to_win874)
-PG_FUNCTION_INFO_V1(win874_to_utf)
+PG_FUNCTION_INFO_V1(utf_to_win874);
+PG_FUNCTION_INFO_V1(win874_to_utf);
 
 extern Datum utf_to_win874(PG_FUNCTION_ARGS);
 extern Datum win874_to_utf(PG_FUNCTION_ARGS);