win32でのALLOC() その2

ALLOC()の定義を見てみる。


#define ALLOC(type) (type*)xmalloc(sizeof(type))

xmalloc()ってなんだろう?