shithub: scc

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