git: 9front

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