global cleanup to use the new syscall interface
[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 }