mirror of
https://github.com/fluencelabs/musl
synced 2025-04-25 15:22:15 +00:00
11 lines
192 B
C
11 lines
192 B
C
#include <unistd.h>
|
|
#include "syscall.h"
|
|
#include "libc.h"
|
|
|
|
int truncate(const char *path, off_t length)
|
|
{
|
|
return syscall3(__NR_truncate, (long)path, SYSCALL_LL(length));
|
|
}
|
|
|
|
LFS64(truncate);
|