shithub: scc

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