use a more-correct integer type, and silence 64-bit warnings as a bonus
[musl] / src / stdio / remove.c
1 #include <stdio.h>
2 #include "syscall.h"
3
4 int remove(const char *path)
5 {
6         return __syscall_unlink(path);
7 }