From 3518fbe86f5a6a5b123bc5e23772f73a7d29fbec Mon Sep 17 00:00:00 2001
From: Tom Lane <tgl@sss.pgh.pa.us>
Date: Sat, 26 Oct 2002 15:01:01 +0000
Subject: [PATCH] Add missing semicolons to a few PG_FUNCTION_INFO_V1 calls.

---
 contrib/chkpass/chkpass.c                     | 12 +++---
 .../ascii_and_mic/ascii_and_mic.c             |  6 +--
 .../cyrillic_and_mic/cyrillic_and_mic.c       | 42 +++++++++----------
 .../euc_cn_and_mic/euc_cn_and_mic.c           |  6 +--
 .../euc_jp_and_sjis/euc_jp_and_sjis.c         | 14 +++----
 .../euc_kr_and_mic/euc_kr_and_mic.c           |  6 +--
 .../euc_tw_and_big5/euc_tw_and_big5.c         | 14 +++----
 .../latin2_and_win1250/latin2_and_win1250.c   | 14 +++----
 .../latin_and_mic/latin_and_mic.c             | 14 +++----
 .../utf8_and_ascii/utf8_and_ascii.c           |  6 +--
 .../utf8_and_big5/utf8_and_big5.c             |  6 +--
 .../utf8_and_cyrillic/utf8_and_cyrillic.c     | 14 +++----
 .../utf8_and_euc_cn/utf8_and_euc_cn.c         |  6 +--
 .../utf8_and_euc_jp/utf8_and_euc_jp.c         |  6 +--
 .../utf8_and_euc_kr/utf8_and_euc_kr.c         |  6 +--
 .../utf8_and_euc_tw/utf8_and_euc_tw.c         |  6 +--
 .../utf8_and_gb18030/utf8_and_gb18030.c       |  6 +--
 .../utf8_and_gbk/utf8_and_gbk.c               |  6 +--
 .../utf8_and_iso8859/utf8_and_iso8859.c       |  6 +--
 .../utf8_and_iso8859_1/utf8_and_iso8859_1.c   |  6 +--
 .../utf8_and_johab/utf8_and_johab.c           |  6 +--
 .../utf8_and_sjis/utf8_and_sjis.c             |  6 +--
 .../utf8_and_tcvn/utf8_and_tcvn.c             |  6 +--
 .../utf8_and_uhc/utf8_and_uhc.c               |  6 +--
 .../utf8_and_win1250/utf8_and_win1250.c       |  6 +--
 .../utf8_and_win1256/utf8_and_win1256.c       |  6 +--
 .../utf8_and_win874/utf8_and_win874.c         |  6 +--
 27 files changed, 122 insertions(+), 122 deletions(-)

diff --git a/contrib/chkpass/chkpass.c b/contrib/chkpass/chkpass.c
index 60e71df2d86..b4429adac02 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 a83eaae1f4d..a2818ed1ad1 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 edf0710242a..ef3a07fc215 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 e757d341025..2b046f49c42 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 6c5ccc332a7..a8619fb5927 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 079686d65e7..6c82401c20f 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 d76fffbfff8..72fda78f49b 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 0c382f151ba..4e9aec470aa 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 17c98b01159..c3389c01921 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 b3f529a4ab1..0de1cc2c589 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 5c9aad04d2d..d3a76821fbc 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 e88201c9b09..d4c4f86fb8a 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 2a5f02416f6..79f54565367 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 f58aa497b44..9fa364c2b27 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 cd19dce3488..be13ee25a07 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 c6116ae6a31..f80a8f1701b 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 611d0a0cac4..65c7d540ba1 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 85b0480bef2..660c52d7e1e 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 7e19421c894..a7252ae76a3 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 ed36bc33ceb..78ca64e6d86 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 dc9ec630c2d..c6a312cf111 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 ae53ed71bff..dd7bc251c21 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 df1cfe6c135..80ffbd8a608 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 95ba7a7134a..aec8537805f 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 ca04e9eba13..d6e066137a5 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 1a9f326cc0b..b7fd63796b9 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 12e709572f8..0b5e7b2d8d5 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);
-- 
GitLab