[liba] Define calloc

To silence a warning in LZ4. The code is not even built.
This commit is contained in:
Romain Goyet
2019-05-28 16:47:03 +02:00
parent f5c951ca5e
commit d8199ff186
2 changed files with 10 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ LIBA_BEGIN_DECLS
void free(void *ptr);
void * malloc(size_t size);
void * realloc(void *ptr, size_t size);
void * calloc(size_t count, size_t size);
void abort(void) __attribute__((noreturn));