shithub: scc

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