diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-17 21:52:34 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-17 21:52:34 -0800 |
commit | 441f524c0733208c22dd5c38091070abd4063ae6 (patch) | |
tree | 9973d17ac80533dcc52b93de78607492bfaf7b0d /txr.c | |
parent | 001920e1750a6fa121552fcbcb6c8bcbe5a2460e (diff) | |
download | txr-441f524c0733208c22dd5c38091070abd4063ae6.tar.gz txr-441f524c0733208c22dd5c38091070abd4063ae6.tar.bz2 txr-441f524c0733208c22dd5c38091070abd4063ae6.zip |
More removal of C99 wide character I/O, and tightening up
of standard conformance.
Diffstat (limited to 'txr.c')
-rw-r--r-- | txr.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -31,8 +31,8 @@ #include <limits.h> #include <dirent.h> #include <setjmp.h> +#include <stdarg.h> #include <wchar.h> -#include <locale.h> #include "lib.h" #include "stream.h" #include "gc.h" @@ -144,7 +144,6 @@ int main(int argc, char **argv) obj_t *stack_bottom = nil; progname = argv[0] ? utf8_dup_from(argv[0]) : progname; init(progname, oom_realloc_handler, &stack_bottom); - setlocale(LC_CTYPE, "en_US.UTF-8"); return txr_main(argc, argv); } |