This commit was manufactured by cvs2svn to create tag
[gnokii.git] / common / gsm-networks.c
index f0379f5..b36bcf5 100644 (file)
 
 */
 
-#include "config.h"
-
 #include <string.h>
 
 #include "gsm-common.h"
 #include "gsm-networks.h"
 #include "gsm-coding.h"
 
-#ifndef UCLINUX
-
-static GSM_Country GSM_Countries[] =
+GSM_Country GSM_Countries[] =
 {
   { "202", "Greece" },
   { "204", "Netherlands" },
@@ -458,7 +454,7 @@ char *GSM_GetCountryName(char *CountryCode)
   return GSM_Countries[index].Name;
 }
 
-static char *GSM_GetCountryCode(char *CountryName)
+char *GSM_GetCountryCode(char *CountryName)
 {
 
   int index=0;
@@ -484,5 +480,3 @@ void DecodeNetworkCode(unsigned char* buffer, unsigned char* output)
     output[4]=output[3];
     output[3]=' ';
 }
-
-#endif /* UCLINUX */