soc/amd/stoneyridge: remove LIDS field from global NVS
[coreboot.git] / payloads / libpayload / curses / pdcurses-backend / nc_alloc.h
blob25b5161ec6446823ede3e0b1cdcb012d70816efb
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))