'Make more functions and variables "static"' git-svn-id: https://espeak.svn.sourceforge.net/svnroot/espeak/trunk@210 d46cf337-b52f-0410-862d-fd96e6ae7743master
@@ -387,7 +387,7 @@ int IsAlpha(unsigned int c) | |||
return(0); | |||
} | |||
int IsDigit09(unsigned int c) | |||
static int IsDigit09(unsigned int c) | |||
{//========================= | |||
if((c >= '0') && (c <= '9')) | |||
return(1); |