From bc3089425f6b3a43c2898c28f960f5a313c05ebe Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Mon, 7 Jun 2010 10:52:44 +0000 Subject: Add -Owidth=width option to mandoc -Tascii. Asked for by joerg@ about a thousand years ago. Note that this is normalised to >=60. --- main.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'main.h') diff --git a/main.h b/main.h index 20ed51ec..45c092e9 100644 --- a/main.h +++ b/main.h @@ -22,6 +22,9 @@ __BEGIN_DECLS struct mdoc; struct man; +#define UNCONST(a) ((void *)(uintptr_t)(const void *)(a)) + + /* * Definitions for main.c-visible output device functions, e.g., -Thtml * and -Tascii. Note that ascii_alloc() is named as such in @@ -38,7 +41,7 @@ void html_free(void *); void tree_mdoc(void *, const struct mdoc *); void tree_man(void *, const struct man *); -void *ascii_alloc(size_t); +void *ascii_alloc(char *); void terminal_mdoc(void *, const struct mdoc *); void terminal_man(void *, const struct man *); void terminal_free(void *); -- cgit