Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3518fbe

Browse files
committed
Add missing semicolons to a few PG_FUNCTION_INFO_V1 calls.
1 parent 0ed0a9d commit 3518fbe

File tree

27 files changed

+122
-122
lines changed

27 files changed

+122
-122
lines changed

contrib/chkpass/chkpass.c

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* darcy@druid.net
55
* http://www.druid.net/darcy/
66
*
7-
* $Id: chkpass.c,v 1.8 2002/08/29 12:18:20 darcy Exp $
7+
* $Id: chkpass.c,v 1.9 2002/10/26 15:00:59 tgl Exp $
88
* best viewed with tabs set to 4
99
*/
1010

@@ -62,7 +62,7 @@ verify_pass(const char *str)
6262
/*
6363
* CHKPASS reader.
6464
*/
65-
PG_FUNCTION_INFO_V1(chkpass_in)
65+
PG_FUNCTION_INFO_V1(chkpass_in);
6666
Datum
6767
chkpass_in(PG_FUNCTION_ARGS)
6868
{
@@ -110,7 +110,7 @@ chkpass_in(PG_FUNCTION_ARGS)
110110
* Just like any string but we know it is max 15 (13 plus colon and terminator.)
111111
*/
112112

113-
PG_FUNCTION_INFO_V1(chkpass_out)
113+
PG_FUNCTION_INFO_V1(chkpass_out);
114114
Datum
115115
chkpass_out(PG_FUNCTION_ARGS)
116116
{
@@ -134,7 +134,7 @@ chkpass_out(PG_FUNCTION_ARGS)
134134
* special output function that doesn't output the colon
135135
*/
136136

137-
PG_FUNCTION_INFO_V1(chkpass_rout)
137+
PG_FUNCTION_INFO_V1(chkpass_rout);
138138
Datum
139139
chkpass_rout(PG_FUNCTION_ARGS)
140140
{
@@ -158,7 +158,7 @@ chkpass_rout(PG_FUNCTION_ARGS)
158158
* Boolean tests
159159
*/
160160

161-
PG_FUNCTION_INFO_V1(chkpass_eq)
161+
PG_FUNCTION_INFO_V1(chkpass_eq);
162162
Datum
163163
chkpass_eq(PG_FUNCTION_ARGS)
164164
{
@@ -177,7 +177,7 @@ chkpass_eq(PG_FUNCTION_ARGS)
177177
PG_RETURN_BOOL(strcmp(a1->password, crypt(str, a1->password)) == 0);
178178
}
179179

180-
PG_FUNCTION_INFO_V1(chkpass_ne)
180+
PG_FUNCTION_INFO_V1(chkpass_ne);
181181
Datum
182182
chkpass_ne(PG_FUNCTION_ARGS)
183183
{

src/backend/utils/mb/conversion_procs/ascii_and_mic/ascii_and_mic.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1994, Regents of the University of California
77
*
88
* IDENTIFICATION
9-
* $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 $
9+
* $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 $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -15,8 +15,8 @@
1515
#include "fmgr.h"
1616
#include "mb/pg_wchar.h"
1717

18-
PG_FUNCTION_INFO_V1(ascii_to_mic)
19-
PG_FUNCTION_INFO_V1(mic_to_ascii)
18+
PG_FUNCTION_INFO_V1(ascii_to_mic);
19+
PG_FUNCTION_INFO_V1(mic_to_ascii);
2020

2121
extern Datum ascii_to_mic(PG_FUNCTION_ARGS);
2222
extern Datum mic_to_ascii(PG_FUNCTION_ARGS);

src/backend/utils/mb/conversion_procs/cyrillic_and_mic/cyrillic_and_mic.c

+21-21
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1994, Regents of the University of California
77
*
88
* IDENTIFICATION
9-
* $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 $
9+
* $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 $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -17,26 +17,26 @@
1717

1818
#define ENCODING_GROWTH_RATE 4
1919

20-
PG_FUNCTION_INFO_V1(koi8r_to_mic)
21-
PG_FUNCTION_INFO_V1(mic_to_koi8r)
22-
PG_FUNCTION_INFO_V1(iso_to_mic)
23-
PG_FUNCTION_INFO_V1(mic_to_iso)
24-
PG_FUNCTION_INFO_V1(win1251_to_mic)
25-
PG_FUNCTION_INFO_V1(mic_to_win1251)
26-
PG_FUNCTION_INFO_V1(alt_to_mic)
27-
PG_FUNCTION_INFO_V1(mic_to_alt)
28-
PG_FUNCTION_INFO_V1(koi8r_to_win1251)
29-
PG_FUNCTION_INFO_V1(win1251_to_koi8r)
30-
PG_FUNCTION_INFO_V1(koi8r_to_alt)
31-
PG_FUNCTION_INFO_V1(alt_to_koi8r)
32-
PG_FUNCTION_INFO_V1(alt_to_win1251)
33-
PG_FUNCTION_INFO_V1(win1251_to_alt)
34-
PG_FUNCTION_INFO_V1(iso_to_koi8r)
35-
PG_FUNCTION_INFO_V1(koi8r_to_iso)
36-
PG_FUNCTION_INFO_V1(iso_to_win1251)
37-
PG_FUNCTION_INFO_V1(win1251_to_iso)
38-
PG_FUNCTION_INFO_V1(iso_to_alt)
39-
PG_FUNCTION_INFO_V1(alt_to_iso)
20+
PG_FUNCTION_INFO_V1(koi8r_to_mic);
21+
PG_FUNCTION_INFO_V1(mic_to_koi8r);
22+
PG_FUNCTION_INFO_V1(iso_to_mic);
23+
PG_FUNCTION_INFO_V1(mic_to_iso);
24+
PG_FUNCTION_INFO_V1(win1251_to_mic);
25+
PG_FUNCTION_INFO_V1(mic_to_win1251);
26+
PG_FUNCTION_INFO_V1(alt_to_mic);
27+
PG_FUNCTION_INFO_V1(mic_to_alt);
28+
PG_FUNCTION_INFO_V1(koi8r_to_win1251);
29+
PG_FUNCTION_INFO_V1(win1251_to_koi8r);
30+
PG_FUNCTION_INFO_V1(koi8r_to_alt);
31+
PG_FUNCTION_INFO_V1(alt_to_koi8r);
32+
PG_FUNCTION_INFO_V1(alt_to_win1251);
33+
PG_FUNCTION_INFO_V1(win1251_to_alt);
34+
PG_FUNCTION_INFO_V1(iso_to_koi8r);
35+
PG_FUNCTION_INFO_V1(koi8r_to_iso);
36+
PG_FUNCTION_INFO_V1(iso_to_win1251);
37+
PG_FUNCTION_INFO_V1(win1251_to_iso);
38+
PG_FUNCTION_INFO_V1(iso_to_alt);
39+
PG_FUNCTION_INFO_V1(alt_to_iso);
4040

4141
extern Datum koi8r_to_mic(PG_FUNCTION_ARGS);
4242
extern Datum mic_to_koi8r(PG_FUNCTION_ARGS);

src/backend/utils/mb/conversion_procs/euc_cn_and_mic/euc_cn_and_mic.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1994, Regents of the University of California
77
*
88
* IDENTIFICATION
9-
* $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 $
9+
* $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 $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -15,8 +15,8 @@
1515
#include "fmgr.h"
1616
#include "mb/pg_wchar.h"
1717

18-
PG_FUNCTION_INFO_V1(euc_cn_to_mic)
19-
PG_FUNCTION_INFO_V1(mic_to_euc_cn)
18+
PG_FUNCTION_INFO_V1(euc_cn_to_mic);
19+
PG_FUNCTION_INFO_V1(mic_to_euc_cn);
2020

2121
extern Datum euc_cn_to_mic(PG_FUNCTION_ARGS);
2222
extern Datum mic_to_euc_cn(PG_FUNCTION_ARGS);

src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/euc_jp_and_sjis.c

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1994, Regents of the University of California
77
*
88
* IDENTIFICATION
9-
* $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 $
9+
* $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 $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -29,12 +29,12 @@
2929

3030
#define ENCODING_GROWTH_RATE 4
3131

32-
PG_FUNCTION_INFO_V1(euc_jp_to_sjis)
33-
PG_FUNCTION_INFO_V1(sjis_to_euc_jp)
34-
PG_FUNCTION_INFO_V1(euc_jp_to_mic)
35-
PG_FUNCTION_INFO_V1(mic_to_euc_jp)
36-
PG_FUNCTION_INFO_V1(sjis_to_mic)
37-
PG_FUNCTION_INFO_V1(mic_to_sjis)
32+
PG_FUNCTION_INFO_V1(euc_jp_to_sjis);
33+
PG_FUNCTION_INFO_V1(sjis_to_euc_jp);
34+
PG_FUNCTION_INFO_V1(euc_jp_to_mic);
35+
PG_FUNCTION_INFO_V1(mic_to_euc_jp);
36+
PG_FUNCTION_INFO_V1(sjis_to_mic);
37+
PG_FUNCTION_INFO_V1(mic_to_sjis);
3838

3939
extern Datum euc_jp_to_sjis(PG_FUNCTION_ARGS);
4040
extern Datum sjis_to_euc_jp(PG_FUNCTION_ARGS);

src/backend/utils/mb/conversion_procs/euc_kr_and_mic/euc_kr_and_mic.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1994, Regents of the University of California
77
*
88
* IDENTIFICATION
9-
* $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 $
9+
* $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 $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -15,8 +15,8 @@
1515
#include "fmgr.h"
1616
#include "mb/pg_wchar.h"
1717

18-
PG_FUNCTION_INFO_V1(euc_kr_to_mic)
19-
PG_FUNCTION_INFO_V1(mic_to_euc_kr)
18+
PG_FUNCTION_INFO_V1(euc_kr_to_mic);
19+
PG_FUNCTION_INFO_V1(mic_to_euc_kr);
2020

2121
extern Datum euc_kr_to_mic(PG_FUNCTION_ARGS);
2222
extern Datum mic_to_euc_kr(PG_FUNCTION_ARGS);

src/backend/utils/mb/conversion_procs/euc_tw_and_big5/euc_tw_and_big5.c

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1994, Regents of the University of California
77
*
88
* IDENTIFICATION
9-
* $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 $
9+
* $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 $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -17,12 +17,12 @@
1717

1818
#define ENCODING_GROWTH_RATE 4
1919

20-
PG_FUNCTION_INFO_V1(euc_tw_to_big5)
21-
PG_FUNCTION_INFO_V1(big5_to_euc_tw)
22-
PG_FUNCTION_INFO_V1(euc_tw_to_mic)
23-
PG_FUNCTION_INFO_V1(mic_to_euc_tw)
24-
PG_FUNCTION_INFO_V1(big5_to_mic)
25-
PG_FUNCTION_INFO_V1(mic_to_big5)
20+
PG_FUNCTION_INFO_V1(euc_tw_to_big5);
21+
PG_FUNCTION_INFO_V1(big5_to_euc_tw);
22+
PG_FUNCTION_INFO_V1(euc_tw_to_mic);
23+
PG_FUNCTION_INFO_V1(mic_to_euc_tw);
24+
PG_FUNCTION_INFO_V1(big5_to_mic);
25+
PG_FUNCTION_INFO_V1(mic_to_big5);
2626

2727
extern Datum euc_tw_to_big5(PG_FUNCTION_ARGS);
2828
extern Datum big5_to_euc_tw(PG_FUNCTION_ARGS);

src/backend/utils/mb/conversion_procs/latin2_and_win1250/latin2_and_win1250.c

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1994, Regents of the University of California
77
*
88
* IDENTIFICATION
9-
* $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 $
9+
* $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 $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -17,12 +17,12 @@
1717

1818
#define ENCODING_GROWTH_RATE 4
1919

20-
PG_FUNCTION_INFO_V1(latin2_to_mic)
21-
PG_FUNCTION_INFO_V1(mic_to_latin2)
22-
PG_FUNCTION_INFO_V1(win1250_to_mic)
23-
PG_FUNCTION_INFO_V1(mic_to_win1250)
24-
PG_FUNCTION_INFO_V1(latin2_to_win1250)
25-
PG_FUNCTION_INFO_V1(win1250_to_latin2)
20+
PG_FUNCTION_INFO_V1(latin2_to_mic);
21+
PG_FUNCTION_INFO_V1(mic_to_latin2);
22+
PG_FUNCTION_INFO_V1(win1250_to_mic);
23+
PG_FUNCTION_INFO_V1(mic_to_win1250);
24+
PG_FUNCTION_INFO_V1(latin2_to_win1250);
25+
PG_FUNCTION_INFO_V1(win1250_to_latin2);
2626

2727
extern Datum latin2_to_mic(PG_FUNCTION_ARGS);
2828
extern Datum mic_to_latin2(PG_FUNCTION_ARGS);

src/backend/utils/mb/conversion_procs/latin_and_mic/latin_and_mic.c

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1994, Regents of the University of California
77
*
88
* IDENTIFICATION
9-
* $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 $
9+
* $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 $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -15,12 +15,12 @@
1515
#include "fmgr.h"
1616
#include "mb/pg_wchar.h"
1717

18-
PG_FUNCTION_INFO_V1(latin1_to_mic)
19-
PG_FUNCTION_INFO_V1(mic_to_latin1)
20-
PG_FUNCTION_INFO_V1(latin3_to_mic)
21-
PG_FUNCTION_INFO_V1(mic_to_latin3)
22-
PG_FUNCTION_INFO_V1(latin4_to_mic)
23-
PG_FUNCTION_INFO_V1(mic_to_latin4)
18+
PG_FUNCTION_INFO_V1(latin1_to_mic);
19+
PG_FUNCTION_INFO_V1(mic_to_latin1);
20+
PG_FUNCTION_INFO_V1(latin3_to_mic);
21+
PG_FUNCTION_INFO_V1(mic_to_latin3);
22+
PG_FUNCTION_INFO_V1(latin4_to_mic);
23+
PG_FUNCTION_INFO_V1(mic_to_latin4);
2424

2525
extern Datum latin1_to_mic(PG_FUNCTION_ARGS);
2626
extern Datum mic_to_latin1(PG_FUNCTION_ARGS);

src/backend/utils/mb/conversion_procs/utf8_and_ascii/utf8_and_ascii.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1994, Regents of the University of California
77
*
88
* IDENTIFICATION
9-
* $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 $
9+
* $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 $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -15,8 +15,8 @@
1515
#include "fmgr.h"
1616
#include "mb/pg_wchar.h"
1717

18-
PG_FUNCTION_INFO_V1(ascii_to_utf8)
19-
PG_FUNCTION_INFO_V1(utf8_to_ascii)
18+
PG_FUNCTION_INFO_V1(ascii_to_utf8);
19+
PG_FUNCTION_INFO_V1(utf8_to_ascii);
2020

2121
extern Datum ascii_to_utf8(PG_FUNCTION_ARGS);
2222
extern Datum utf8_to_ascii(PG_FUNCTION_ARGS);

src/backend/utils/mb/conversion_procs/utf8_and_big5/utf8_and_big5.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1994, Regents of the University of California
77
*
88
* IDENTIFICATION
9-
* $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 $
9+
* $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 $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -17,8 +17,8 @@
1717
#include "../../Unicode/big5_to_utf8.map"
1818
#include "../../Unicode/utf8_to_big5.map"
1919

20-
PG_FUNCTION_INFO_V1(big5_to_utf8)
21-
PG_FUNCTION_INFO_V1(utf8_to_big5)
20+
PG_FUNCTION_INFO_V1(big5_to_utf8);
21+
PG_FUNCTION_INFO_V1(utf8_to_big5);
2222

2323
extern Datum big5_to_utf8(PG_FUNCTION_ARGS);
2424
extern Datum utf8_to_big5(PG_FUNCTION_ARGS);

src/backend/utils/mb/conversion_procs/utf8_and_cyrillic/utf8_and_cyrillic.c

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1994, Regents of the University of California
77
*
88
* IDENTIFICATION
9-
* $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 $
9+
* $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 $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -21,12 +21,12 @@
2121
#include "../../Unicode/utf8_to_alt.map"
2222
#include "../../Unicode/alt_to_utf8.map"
2323

24-
PG_FUNCTION_INFO_V1(utf8_to_koi8r)
25-
PG_FUNCTION_INFO_V1(koi8r_to_utf8)
26-
PG_FUNCTION_INFO_V1(utf8_to_win1251)
27-
PG_FUNCTION_INFO_V1(win1251_to_utf8)
28-
PG_FUNCTION_INFO_V1(utf8_to_alt)
29-
PG_FUNCTION_INFO_V1(alt_to_utf8)
24+
PG_FUNCTION_INFO_V1(utf8_to_koi8r);
25+
PG_FUNCTION_INFO_V1(koi8r_to_utf8);
26+
PG_FUNCTION_INFO_V1(utf8_to_win1251);
27+
PG_FUNCTION_INFO_V1(win1251_to_utf8);
28+
PG_FUNCTION_INFO_V1(utf8_to_alt);
29+
PG_FUNCTION_INFO_V1(alt_to_utf8);
3030

3131
extern Datum utf8_to_koi8r(PG_FUNCTION_ARGS);
3232
extern Datum koi8r_to_utf8(PG_FUNCTION_ARGS);

src/backend/utils/mb/conversion_procs/utf8_and_euc_cn/utf8_and_euc_cn.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1994, Regents of the University of California
77
*
88
* IDENTIFICATION
9-
* $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 $
9+
* $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 $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -17,8 +17,8 @@
1717
#include "../../Unicode/euc_cn_to_utf8.map"
1818
#include "../../Unicode/utf8_to_euc_cn.map"
1919

20-
PG_FUNCTION_INFO_V1(euc_cn_to_utf8)
21-
PG_FUNCTION_INFO_V1(utf8_to_euc_cn)
20+
PG_FUNCTION_INFO_V1(euc_cn_to_utf8);
21+
PG_FUNCTION_INFO_V1(utf8_to_euc_cn);
2222

2323
extern Datum euc_cn_to_utf8(PG_FUNCTION_ARGS);
2424
extern Datum utf8_to_euc_cn(PG_FUNCTION_ARGS);

src/backend/utils/mb/conversion_procs/utf8_and_euc_jp/utf8_and_euc_jp.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1994, Regents of the University of California
77
*
88
* IDENTIFICATION
9-
* $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 $
9+
* $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 $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -17,8 +17,8 @@
1717
#include "../../Unicode/euc_jp_to_utf8.map"
1818
#include "../../Unicode/utf8_to_euc_jp.map"
1919

20-
PG_FUNCTION_INFO_V1(euc_jp_to_utf8)
21-
PG_FUNCTION_INFO_V1(utf8_to_euc_jp)
20+
PG_FUNCTION_INFO_V1(euc_jp_to_utf8);
21+
PG_FUNCTION_INFO_V1(utf8_to_euc_jp);
2222

2323
extern Datum euc_jp_to_utf8(PG_FUNCTION_ARGS);
2424
extern Datum utf8_to_euc_jp(PG_FUNCTION_ARGS);

0 commit comments

Comments
 (0)