git: 9front

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