diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2015-01-14 22:44:55 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2015-01-14 22:44:55 +0000 |
commit | 323e3a106a57ad0f1823fa1f87d6bafc7f3097f3 (patch) | |
tree | 5eaf047aef732630a5c12083c81dde92234c960b /libroff.h | |
parent | d278d189880b66efa26e74464c25442317de546f (diff) | |
download | mandoc-323e3a106a57ad0f1823fa1f87d6bafc7f3097f3.tar.gz |
simplify by getting rid of ROFF_ERR in tbl(7) parsing; no functional change
Diffstat (limited to 'libroff.h')
-rw-r--r-- | libroff.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -69,8 +69,8 @@ void tbl_restart(int, int, struct tbl_node *); void tbl_free(struct tbl_node *); void tbl_reset(struct tbl_node *); enum rofferr tbl_read(struct tbl_node *, int, const char *, int); -int tbl_option(struct tbl_node *, int, const char *); -int tbl_layout(struct tbl_node *, int, const char *); +void tbl_option(struct tbl_node *, int, const char *); +void tbl_layout(struct tbl_node *, int, const char *); int tbl_data(struct tbl_node *, int, const char *); int tbl_cdata(struct tbl_node *, int, const char *); const struct tbl_span *tbl_span(struct tbl_node *); |