git: 9front

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