Add setlocale LC_CTYPE

This commit is contained in:
Andrey A. Chernov 1995-10-23 23:36:55 +00:00
parent fb241711f7
commit 8dcf55a40e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=11749

View File

@ -53,6 +53,7 @@ static char sccsid[] = "@(#)dmesg.c 8.1 (Berkeley) 6/5/93";
#include <time.h>
#include <unistd.h>
#include <vis.h>
#include <locale.h>
struct nlist nl[] = {
#define X_MSGBUF 0
@ -77,6 +78,7 @@ main(argc, argv)
kvm_t *kd;
char buf[5];
(void) setlocale(LC_CTYPE, "");
memf = nlistf = NULL;
while ((ch = getopt(argc, argv, "M:N:")) != EOF)
switch(ch) {