• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #define typeMalloc(type,elts) (type *)malloc((elts)*sizeof(type))
2 #define typeCalloc(type,elts) (type *)calloc((elts),sizeof(type))
3 #define typeRealloc(type,elts,ptr) (type *)_nc_doalloc(ptr, (elts)*sizeof(type))
4