__ptr_t
_malloc (size)
__malloc_size_t size;
{
return malloc (size);
}
As far as I know of the function declaration it looks as follows :
<return-type> <function-name>(<data-type> <var-name>){
// Code..
}
But above function looks different.