Removed the mhlproc profile entry. Call mhl directly.
[mmh] / sbr / m_atoi.c
index 0222533..b903b7e 100644 (file)
 
 
 int
-m_atoi (char *str)
+m_atoi(char *str)
 {
        int i;
        unsigned char *cp;
 
        for (i = 0, cp = str; *cp; cp++) {
-#ifdef LOCALE
                if (!isdigit(*cp))
-#else
-               if (*cp < '0' || *cp > '9')
-#endif
                        return 0;
 
                i *= 10;