Sign in
cobalt
/
cobalt
/
6c50c1c49c8a70d13dcb47674d70da002e02256c
/
.
/
third_party
/
musl
/
src
/
unistd
/
ftruncate.c
blob: 54ff34bc3ebd7fa76273148eac9eee2880935717 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
ftruncate
(
int
fd
,
off_t
length
)
{
return
syscall
(
SYS_ftruncate
,
fd
,
__SYSCALL_LL_O
(
length
));
}