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