Fixed hangup on initial run on uClinux (TCSADRAIN -> TCSANOW)
[gnokii.git] / common / gsm-networks.c
index b36bcf5..97ebb1c 100644 (file)
 
 */
 
+#include "config.h"
+
 #include <string.h>
 
 #include "gsm-common.h"
 #include "gsm-networks.h"
 #include "gsm-coding.h"
 
-GSM_Country GSM_Countries[] =
+static GSM_Country GSM_Countries[] =
 {
   { "202", "Greece" },
   { "204", "Netherlands" },
@@ -454,7 +456,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;