syscall overhaul part two - unify public and internal syscall interface
[musl] / src / unistd / truncate.c
1 #include <unistd.h>
2 #include "syscall.h"
3 #include "libc.h"
4
5 int truncate(const char *path, off_t length)
6 {
7         return syscall(__NR_truncate, path, __SYSCALL_LL(length));
8 }
9
10 LFS64(truncate);