git: 9front

ref: f5e02d924748303cb1e98ad28e6d1b9b918a72f0
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);
}