1 2 3 4 5 6 7 8
#ifndef MY_CALLOC_H #define MY_CALLOC_H #include <stdlib.h> void *my_calloc(size_t n, size_t size); #endif /* ! MY_CALLOC_H */