git: 9front

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