shithub: scc

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