1 #include <stdlib.h>
2 
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
6 
7 void *__asan_dummy_calloc(size_t nmemb, size_t size) {
8   return calloc(nmemb, size);
9 }
10 
11 #ifdef __cplusplus
12 } // extern "C"
13 #endif
14