Hi, Suppose I'm writing some Inline C code that calls out to an external C library. I call a function that allocates some memory internally using malloc(), and hands a struct back to me. When I want to free that memory again, should I use free(), or Safefree()? 'perldoc perlclib' doesn't give a very clear answer on this matter.
-Ken