xref: /aosp_15_r20/external/musl/src/unistd/truncate.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <unistd.h>
2 #include "syscall.h"
3 
truncate(const char * path,off_t length)4 int truncate(const char *path, off_t length)
5 {
6 	return syscall(SYS_truncate, path, __SYSCALL_LL_O(length));
7 }
8