git: 9front

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