shithub: scc

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