git: 9front

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