shithub: scc

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