major stdio overhaul, using readv/writev, plus other changes
[musl] / src / stdio / remove.c
1 #include <stdio.h>
2 #include "syscall.h"
3
4 int remove(const char *path)
5 {
6         return syscall(SYS_unlink, path);
7 }