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