xref: /plan9/sys/src/ape/lib/ap/stdio/remove.c (revision 0b459c2cb92b7c9d88818e9a2f72e678e5bc4553)
1 /*
2  * pANS stdio -- remove
3  */
4 #include "iolib.h"
5 int remove(const char *f){
6 	return unlink((char *)f);
7 }
8