summaryrefslogtreecommitdiffstats
path: root/libmandoc.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-10-28 19:21:59 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-10-28 19:21:59 +0000
commit96653104d83f28e58819b18170145bf8ebd3fcd2 (patch)
tree49cfe322a6a755ae95ecb75fb10617a6551853dd /libmandoc.h
parent8ab24f2ea4960118f60f8c80f5ce3be7aab59fbb (diff)
downloadmandoc-96653104d83f28e58819b18170145bf8ebd3fcd2.tar.gz
Slow movement of internal allocations to fail completely.
Diffstat (limited to 'libmandoc.h')
-rw-r--r--libmandoc.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libmandoc.h b/libmandoc.h
index 7c9f5ef8..b147f465 100644
--- a/libmandoc.h
+++ b/libmandoc.h
@@ -20,6 +20,11 @@
__BEGIN_DECLS
int mandoc_special(const char *);
+void *mandoc_calloc(size_t, size_t);
+char *mandoc_strdup(const char *);
+void *mandoc_malloc(size_t);
+void *mandoc_realloc(void *, size_t);
+void *mandoc_reallocf(void *, size_t);
__END_DECLS