shithub: scc

ref: eee59735a33ca030a5787eec69d494ee143e81dd
dir: /src/libc/stdio/remove.c/

View raw version
#include <stdio.h>

#include "../syscall.h"

#undef remove

int
remove(const char *filename)
{
	return _unlink(filename);
}