diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-30 05:58:36 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-30 05:58:36 +0000 |
commit | e46c16c46ad18d40f21b251bf8995387efa68796 (patch) | |
tree | 7113f6e5fd33a5d7a1c6d20a153ccac74342f042 /man.h | |
parent | e7cea9dff6d8ebb34cdba4486eef0fcc6ac84160 (diff) | |
download | mandoc-e46c16c46ad18d40f21b251bf8995387efa68796.tar.gz |
libmdoc and libman now using non-recoverable allocations (simpler code).
Diffstat (limited to 'man.h')
-rw-r--r-- | man.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -105,7 +105,7 @@ struct man; void man_free(struct man *); struct man *man_alloc(void *, int, const struct man_cb *); -int man_reset(struct man *); +void man_reset(struct man *); int man_parseln(struct man *, int, char *buf); int man_endparse(struct man *); |