Merge pull request #3817 from sergeyrar/patch-1

XSTRDUP function signature fix
This commit is contained in:
David Lamparter 2019-02-18 18:41:20 +01:00 committed by GitHub
commit feed78aa63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,7 +95,7 @@ Usage
.. c:function:: void *XCALLOC(struct memtype *mtype, size_t size)
.. c:function:: void *XSTRDUP(struct memtype *mtype, size_t size)
.. c:function:: void *XSTRDUP(struct memtype *mtype, const char *name)
Allocation wrappers for malloc/calloc/realloc/strdup, taking an extra
mtype parameter.