#endif
#include <aconf.h>
-#include <locale.h>
#include <math.h>
#include <stdlib.h>
#include <stddef.h>
}
} while (i < 64);
buf[i] = '\0';
- {
- char *theLocale = setlocale(LC_NUMERIC, "C");
- x = atof(buf);
- setlocale(LC_NUMERIC, theLocale);
- }
+ x = atof(buf);
*isFP = gTrue;
} else if (b0 == 31) {
x = 0;
#endif
#include <aconf.h>
-#include <locale.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
resizeCode(*codePtr);
if (isReal) {
code[*codePtr].type = psReal;
- {
- char *theLocale = setlocale(LC_NUMERIC, "C");
- code[*codePtr].real = atof(tok->getCString());
- setlocale(LC_NUMERIC, theLocale);
- }
+ code[*codePtr].real = atof(tok->getCString());
} else {
code[*codePtr].type = psInt;
code[*codePtr].intg = atoi(tok->getCString());