diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1995-10-26 11:12:39 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1995-10-26 11:12:39 +0000 |
| commit | e93185406942dc3bd1618d0554714cbd29328bf9 (patch) | |
| tree | c3d69cdc7dfa1e6272679c6967724b370a0780f1 /gnu/usr.bin/cpio | |
| parent | d1b2ad1a54b0836bfe928cfdae420460e97fcb5b (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin/cpio')
| -rw-r--r-- | gnu/usr.bin/cpio/main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/usr.bin/cpio/main.c b/gnu/usr.bin/cpio/main.c index 78b5fc53145f..9346b780bed1 100644 --- a/gnu/usr.bin/cpio/main.c +++ b/gnu/usr.bin/cpio/main.c @@ -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 |
