shithub: front

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