1 /* 2 * pANS stdio -- remove 3 */ 4 #include "iolib.h" remove(const char * f)5 int remove(const char *f){ 6 return unlink((char *)f); 7 } 8