git: 9front

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