diff options
Diffstat (limited to 'lib/libc/locale/setrunelocale.c')
-rw-r--r-- | lib/libc/locale/setrunelocale.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/locale/setrunelocale.c b/lib/libc/locale/setrunelocale.c index c2cc7f0..5ca255c 100644 --- a/lib/libc/locale/setrunelocale.c +++ b/lib/libc/locale/setrunelocale.c @@ -40,7 +40,7 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); -#include <rune.h> +#include <runetype.h> #include <errno.h> #include <limits.h> #include <string.h> @@ -159,8 +159,8 @@ __setrunelocale(const char *encoding) __mbsnrtowcs = __mbsnrtowcs_std; __wcrtomb = NULL; __wcsnrtombs = __wcsnrtombs_std; - rl->__sputrune = __emulated_sputrune; - rl->__sgetrune = __emulated_sgetrune; + rl->__sputrune = NULL; + rl->__sgetrune = NULL; if (strcmp(rl->__encoding, "NONE") == 0) ret = _none_init(rl); else if (strcmp(rl->__encoding, "UTF-8") == 0) |