summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/ap/stdio/remove.c
blob: bb30c94d5b02316c06b50bb0081c6d3d3e287501 (plain)
1
2
3
4
5
6
7
/*
 * pANS stdio -- remove
 */
#include "iolib.h"
int remove(const char *f){
	return unlink((char *)f);
}