diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-28 19:21:59 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-28 19:21:59 +0000 |
commit | 96653104d83f28e58819b18170145bf8ebd3fcd2 (patch) | |
tree | 49cfe322a6a755ae95ecb75fb10617a6551853dd /libmandoc.h | |
parent | 8ab24f2ea4960118f60f8c80f5ce3be7aab59fbb (diff) | |
download | mandoc-96653104d83f28e58819b18170145bf8ebd3fcd2.tar.gz |
Slow movement of internal allocations to fail completely.
Diffstat (limited to 'libmandoc.h')
-rw-r--r-- | libmandoc.h | 5 |
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 |