Skip to content
Snippets Groups Projects
Commit 6f668ee1 authored by Tom Lane's avatar Tom Lane
Browse files

ifdef out some unused routines to suppress gcc warnings.

parent 187c58f2
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* conversion between client encoding and server internal encoding * conversion between client encoding and server internal encoding
* (currently mule internal code (mic) is used) * (currently mule internal code (mic) is used)
* Tatsuo Ishii * Tatsuo Ishii
* $Id: conv.c,v 1.6 1999/03/24 07:02:16 ishii Exp $ * $Id: conv.c,v 1.7 1999/04/25 18:09:54 tgl Exp $
*/ */
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
...@@ -543,6 +543,7 @@ mic2latin4(unsigned char *mic, unsigned char *p, int len) ...@@ -543,6 +543,7 @@ mic2latin4(unsigned char *mic, unsigned char *p, int len)
{ {
mic2latin(mic, p, len, LC_ISO8859_4); mic2latin(mic, p, len, LC_ISO8859_4);
} }
#ifdef NOT_USED
static void static void
latin52mic(unsigned char *l, unsigned char *p, int len) latin52mic(unsigned char *l, unsigned char *p, int len)
{ {
...@@ -553,6 +554,7 @@ mic2latin5(unsigned char *mic, unsigned char *p, int len) ...@@ -553,6 +554,7 @@ mic2latin5(unsigned char *mic, unsigned char *p, int len)
{ {
mic2latin(mic, p, len, LC_ISO8859_5); mic2latin(mic, p, len, LC_ISO8859_5);
} }
#endif
/* /*
* ASCII ---> MIC * ASCII ---> MIC
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment