P99

◆ calloc

#define calloc (   ...)    P99_CALL_DEFARG(calloc, 2, __VA_ARGS__)

Default arguments for C99 function calloc

This macro hides the function

void* calloc ( size_t rec_num, size_t rec_size )
See also
P99_CALL_DEFARG
Parameters
rec_numis required
rec_sizedefaults to 1, thus calloc(rec_num) is equivalent to malloc(rec_num) only that it also initializes the allocated space to all zeros

Definition at line 44 of file p99_c99_default.h.

calloc
#define calloc(...)
Default arguments for C99 function calloc
Definition: p99_c99_default.h:44