summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/ftruncate.c
blob: b9a69714f401470ab539b935519289ab73756187 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * ftruncate() for uClibc
 *
 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
 *
 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 */

#include <sys/syscall.h>
#include <unistd.h>

#if defined __NR_ftruncate64 && !defined __NR_ftruncate
# include <endian.h>
# include <stdint.h>
int ftruncate(int fd, __off_t length)
{
# if __WORDSIZE == 32
	return INLINE_SYSCALL(ftruncate64, 3, fd, OFF_HI_LO(length));
# else
	return ftruncate64(fd, length);
# endif
}
libc_hidden_def(ftruncate);

#else
_syscall2(int, ftruncate, int, fd, __off_t, length)
libc_hidden_def(ftruncate)
#endif