#define axl_new ( type,
count   )     (type *) calloc (count, sizeof (type))

Support macro to allocate memory using the calloc function, making a casting and using the sizeof keyword.

Parameters:
type The type to allocate
count How many items to allocate.
Returns:
A newly allocated pointer.