Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit3518fbe

Browse files
committed
Add missing semicolons to a few PG_FUNCTION_INFO_V1 calls.
1 parent0ed0a9d commit3518fbe

File tree

27 files changed

+122
-122
lines changed

27 files changed

+122
-122
lines changed

‎contrib/chkpass/chkpass.c

Lines changed: 6 additions & 6 deletions
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

Lines changed: 3 additions & 3 deletions
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
externDatumascii_to_mic(PG_FUNCTION_ARGS);
2222
externDatummic_to_ascii(PG_FUNCTION_ARGS);

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

Lines changed: 21 additions & 21 deletions
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
#defineENCODING_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
externDatumkoi8r_to_mic(PG_FUNCTION_ARGS);
4242
externDatummic_to_koi8r(PG_FUNCTION_ARGS);

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

Lines changed: 3 additions & 3 deletions
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
externDatumeuc_cn_to_mic(PG_FUNCTION_ARGS);
2222
externDatummic_to_euc_cn(PG_FUNCTION_ARGS);

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

Lines changed: 7 additions & 7 deletions
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
#defineENCODING_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
externDatumeuc_jp_to_sjis(PG_FUNCTION_ARGS);
4040
externDatumsjis_to_euc_jp(PG_FUNCTION_ARGS);

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

Lines changed: 3 additions & 3 deletions
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
externDatumeuc_kr_to_mic(PG_FUNCTION_ARGS);
2222
externDatummic_to_euc_kr(PG_FUNCTION_ARGS);

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

Lines changed: 7 additions & 7 deletions
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
#defineENCODING_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
externDatumeuc_tw_to_big5(PG_FUNCTION_ARGS);
2828
externDatumbig5_to_euc_tw(PG_FUNCTION_ARGS);

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

Lines changed: 7 additions & 7 deletions
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
#defineENCODING_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
externDatumlatin2_to_mic(PG_FUNCTION_ARGS);
2828
externDatummic_to_latin2(PG_FUNCTION_ARGS);

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

Lines changed: 7 additions & 7 deletions
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
externDatumlatin1_to_mic(PG_FUNCTION_ARGS);
2626
externDatummic_to_latin1(PG_FUNCTION_ARGS);

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

Lines changed: 3 additions & 3 deletions
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
externDatumascii_to_utf8(PG_FUNCTION_ARGS);
2222
externDatumutf8_to_ascii(PG_FUNCTION_ARGS);

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

Lines changed: 3 additions & 3 deletions
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
externDatumbig5_to_utf8(PG_FUNCTION_ARGS);
2424
externDatumutf8_to_big5(PG_FUNCTION_ARGS);

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

Lines changed: 7 additions & 7 deletions
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
externDatumutf8_to_koi8r(PG_FUNCTION_ARGS);
3232
externDatumkoi8r_to_utf8(PG_FUNCTION_ARGS);

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

Lines changed: 3 additions & 3 deletions
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
externDatumeuc_cn_to_utf8(PG_FUNCTION_ARGS);
2424
externDatumutf8_to_euc_cn(PG_FUNCTION_ARGS);

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

Lines changed: 3 additions & 3 deletions
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
externDatumeuc_jp_to_utf8(PG_FUNCTION_ARGS);
2424
externDatumutf8_to_euc_jp(PG_FUNCTION_ARGS);

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp