diff options
Diffstat (limited to 'chat.c')
-rw-r--r-- | chat.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chat.c b/chat.c index f391fb2..2ec20bd 100644 --- a/chat.c +++ b/chat.c @@ -17,6 +17,7 @@ #define _WITH_GETLINE #include <err.h> +#include <locale.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -49,6 +50,8 @@ static char *prompt(const char *prompt) { } int main(int argc, char *argv[]) { + setlocale(LC_CTYPE, ""); + int opt; while (0 < (opt = getopt(argc, argv, "NW:a:h:j:l:n:p:r:u:vw:"))) { switch (opt) { |