shithub: scc

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