shithub: scc

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