diff options
author | Vicent Marti <tanoku@gmail.com> | 2016-06-06 11:45:47 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-06-06 15:39:06 -0700 |
commit | fc1299a51ede05b3a76ae2f5a3ce882741a43a8b (patch) | |
tree | d8c8de49a2cb7c3bab832556e25f2648a7c6e8d0 /man | |
parent | 27376c2150df53d23995c0360a30152f68af5e7c (diff) |
mem: Add a `realloc` pointer to the memory handler
Diffstat (limited to 'man')
-rw-r--r-- | man/man3/cmark.3 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/man/man3/cmark.3 b/man/man3/cmark.3 index ca304e6..ec4e031 100644 --- a/man/man3/cmark.3 +++ b/man/man3/cmark.3 @@ -1,4 +1,4 @@ -.TH cmark 3 "June 02, 2016" "LOCAL" "Library Functions Manual" +.TH cmark 3 "June 06, 2016" "LOCAL" "Library Functions Manual" .SH NAME .PP @@ -104,6 +104,7 @@ Custom memory allocator support .RS 0n typedef struct cmark_mem { void *(*calloc)(size_t, size_t); + void *(*realloc)(void *, size_t); void (*free)(void *); } cmark_mem; .RE |