free.c raw

   1  #include <stdlib.h>
   2  
   3  void free(void *p)
   4  {
   5  	__libc_free(p);
   6  }
   7