git: 9front

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