remove comment cruft that got left behind in x86_64 syscall.s
[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 syscall3(__NR_truncate, (long)path, SYSCALL_LL(length));
8 }
9
10 LFS64(truncate);