Add setlocale LC_ALL

This commit is contained in:
Andrey A. Chernov 1995-10-26 11:12:39 +00:00
parent d1b2ad1a54
commit e931854069
1 changed files with 6 additions and 0 deletions

View File

@ -23,6 +23,9 @@
#include <getopt.h>
#include <sys/types.h>
#include <sys/stat.h>
#ifdef __FreeBSD__
#include <locale.h>
#endif
#include "filetypes.h"
#include "system.h"
#include "cpiohdr.h"
@ -458,6 +461,9 @@ main (argc, argv)
program_name = argv[0];
umask (0);
#ifdef __FreeBSD__
(void) setlocale (LC_ALL, "");
#endif
#ifdef __TURBOC__
_fmode = O_BINARY; /* Put stdin and stdout in binary mode. */
#endif