repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
soc/amd/stoneyridge: remove LIDS field from global NVS
[coreboot.git]
/
payloads
/
libpayload
/
curses
/
pdcurses-backend
/
nc_alloc.h
blob
25b5161ec6446823ede3e0b1cdcb012d70816efb
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))