in reply to Re^3: question on Inline::C-Cookbook
in thread question on Inline::C-Cookbook
Cheers,/* Allocate memory with Newx if it's available - if it's an older perl that doesn't have Newx then we resort to using New. */ #ifndef Newx # define Newx(v,n,t) New(0,v,n,t) #endif
|
|---|