shithub: scc

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