1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

Fix for unnecessary compiler warnings.

This commit is contained in:
obarthel
2023-09-10 11:14:32 +02:00
parent 7207c96a6f
commit 5efacb1a2b

2
library/stdlib_calloc.c Normal file → Executable file
View File

@ -48,7 +48,7 @@
/****************************************************************************/ /****************************************************************************/
__static void * __static void *
__calloc(size_t num_elements, size_t element_size, const char * file, int line) __calloc(size_t num_elements, size_t element_size, const char * file UNUSED, int line UNUSED)
{ {
void * result = NULL; void * result = NULL;
size_t total_size; size_t total_size;