Skip to content

Commit 248cbb5

Browse files
committed
Temporary ifdef out migrating functions to avoid compiler warnings.
1 parent 4feeee1 commit 248cbb5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/utils/mb/conv.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/conv.c,v 1.39 2002/07/18 02:02:30 ishii Exp $
9+
* $Header: /cvsroot/pgsql/src/backend/utils/mb/conv.c,v 1.40 2002/07/19 00:22:24 ishii Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -33,6 +33,7 @@ pg_print_bogus_char(unsigned char **mic, unsigned char **p)
3333
*(*p)++ = ')';
3434
}
3535

36+
#ifdef NOT_USED
3637
/*
3738
* EUC_KR ---> MIC
3839
*/
@@ -145,7 +146,6 @@ mic2euc_cn(unsigned char *mic, unsigned char *p, int len)
145146
*p = '\0';
146147
}
147148

148-
#ifdef NOT_USED
149149
/*
150150
* GB18030 ---> MIC
151151
* Added by Bill Huang <bhuang@redhat.com>,<bill_huanghb@ybb.ne.jp>
@@ -235,7 +235,6 @@ mic2gb18030(unsigned char *mic, unsigned char *p, int len)
235235
}
236236
*p = '\0';
237237
}
238-
#endif
239238

240239
/*
241240
* LATINn ---> MIC
@@ -685,6 +684,7 @@ mic2win1250(unsigned char *mic, unsigned char *p, int len)
685684

686685
mic2latin_with_table(mic, p, len, LC_ISO8859_2, iso88592_2_win1250);
687686
}
687+
#endif
688688

689689
/*
690690
* comparison routine for bsearch()

0 commit comments

Comments
 (0)