git: 9front

ref: 02dc6c44a85722d2ee7e1fe788f404fc286a3f50
dir: /sys/src/ape/lib/ap/stdio/remove.c/

View raw version
/*
 * pANS stdio -- remove
 */
#include "iolib.h"
int remove(const char *f){
	return unlink((char *)f);
}