We have developed a IOS application and found that application binary file is using _malloc() function somewhere inside.
$otool -IV Reminders | grep _malloc
0x0000000100415b3a 1436 _malloc
0x0000000100415b40 1437 _malloc_size
$
We have not used malloc() function from inside our code. Not sure why this symbol is present within our binary. We would like to understand who is using this malloc() function within our application binary, is it used by some statically linked library or something else ?