fix getc - the classic error of trying to store EOF+0-255 in a char type..
[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 }