diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-05-20 15:48:22 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-05-20 15:48:22 +0000 |
commit | 16620bc92834d5f0c26df4ec247eff77a6a39909 (patch) | |
tree | a28be2c8a0f7f940306f1c22d89a7ca4a80ff734 /main.h | |
parent | 7a5f476f06c95114ab8029b6d9acac4b6f85d053 (diff) | |
download | mandoc-16620bc92834d5f0c26df4ec247eff77a6a39909.tar.gz |
Flip on -Tutf8 backend support. This forces the UTF-8 LC_CTYPE and does
little else. Also remove the check for __STDC_ISO_10646__. It turns
out that very few systems---even those that support it---actually
declare this and it's just causing problems instead of being useful.
Diffstat (limited to 'main.h')
-rw-r--r-- | main.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -42,6 +42,7 @@ void tree_mdoc(void *, const struct mdoc *); void tree_man(void *, const struct man *); void *locale_alloc(char *); +void *utf8_alloc(char *); void *ascii_alloc(char *); void ascii_free(void *); |