summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/syscalls.s/truncate64.S
blob: 0e375728e9342f3cfb0713f2eb022cbc4e1d7d39 (plain)
1
2
3
4
5
6
7
8
9
10
#include "dietfeatures.h"
#include "syscalls.h"

#ifdef __NR_truncate64
#ifdef WANT_LARGEFILE_BACKCOMPAT
syscall(truncate64,__dietlibc_truncate64)
#else
syscall(truncate64,truncate64)
#endif
#endif