git: 9front

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