truncate.c 188 B

12345678910
  1. #include <unistd.h>
  2. #include "syscall.h"
  3. #include "libc.h"
  4. int truncate(const char *path, off_t length)
  5. {
  6. return syscall(SYS_truncate, path, __SYSCALL_LL_O(length));
  7. }
  8. LFS64(truncate);