summaryrefslogtreecommitdiffstats
path: root/mandoc.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-03-17 08:49:34 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-03-17 08:49:34 +0000
commitb115f948b8e55e6c3cef4bfa81f62c190af37a59 (patch)
tree36b8ace377de1911ede7b7fca7e4ce75035928c9 /mandoc.h
parent684938dc1d7c8591d0b63657a1d36b25b24eaea8 (diff)
downloadmandoc-b115f948b8e55e6c3cef4bfa81f62c190af37a59.tar.gz
Move mandoc_{realloc,malloc,calloc} out of libmandoc.h and into mandoc.h
so that everybody can use them. This follows the convention of libXXXX.h being internal to a library and XXXX.h being the external interface. Not only does this allow the removal of lots of redundant NULL-checking code, it also sets the tone for adding new mandoc-global routines.
Diffstat (limited to 'mandoc.h')
-rw-r--r--mandoc.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/mandoc.h b/mandoc.h
index 4aad6f3a..71cca22c 100644
--- a/mandoc.h
+++ b/mandoc.h
@@ -312,14 +312,14 @@ struct regset {
struct reg regs[REG__MAX];
};
+typedef int (*mandocmsg)(enum mandocerr, void *,
+ int, int, const char *);
+
__BEGIN_DECLS
-/*
- * Callback function for warnings, errors, and fatal errors as they
- * occur in the compilers libroff, libmdoc, and libman.
- */
-typedef int (*mandocmsg)(enum mandocerr, void *,
- int, int, const char *);
+void *mandoc_calloc(size_t, size_t);
+void *mandoc_malloc(size_t);
+void *mandoc_realloc(void *, size_t);
__END_DECLS