diff options
author | Alex Auvolat <alex@adnab.me> | 2016-07-14 11:45:11 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2016-07-14 11:45:11 +0200 |
commit | 2f13288a23da4dfaf6c40e1e943f83d8fa43145a (patch) | |
tree | 3b550ad22a00676470ceb2815afd21f42dfd8aae /src/common/include/malloc.h | |
parent | 477911553e0443fcafad5bd96c97314aa2f8d9ea (diff) | |
download | kogata-2f13288a23da4dfaf6c40e1e943f83d8fa43145a.tar.gz kogata-2f13288a23da4dfaf6c40e1e943f83d8fa43145a.zip |
Fix sme warnings...
Diffstat (limited to 'src/common/include/malloc.h')
-rw-r--r-- | src/common/include/malloc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/include/malloc.h b/src/common/include/malloc.h index 0ba5572..ec29d69 100644 --- a/src/common/include/malloc.h +++ b/src/common/include/malloc.h @@ -7,5 +7,6 @@ void* malloc(size_t sz); void free(void* ptr); +void* calloc(size_t nmemb, size_t sz); /* vim: set ts=4 sw=4 tw=0 noet :*/ |