git: 9front

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