gdb/
[deliverable/binutils-gdb.git] / gdb / charset.c
index 16dab6b9fc0a8e74b5cf7a22f97b14f4e3c20f83..4a209a553cb3a1fcbf2fb117848f6a83175fbeb1 100644 (file)
 #define EILSEQ ENOENT
 #endif
 
-iconv_t
+static iconv_t
 phony_iconv_open (const char *to, const char *from)
 {
   /* We allow conversions from UTF-32BE, wchar_t, and the host charset.
@@ -124,13 +124,13 @@ phony_iconv_open (const char *to, const char *from)
   return !strcmp (from, "UTF-32BE");
 }
 
-int
+static int
 phony_iconv_close (iconv_t arg)
 {
   return 0;
 }
 
-size_t
+static size_t
 phony_iconv (iconv_t utf_flag, const char **inbuf, size_t *inbytesleft,
             char **outbuf, size_t *outbytesleft)
 {
This page took 0.033502 seconds and 4 git commands to generate.