File:  [DVB] / dietlibc / lib / __ftruncate64.c
Revision 1.2: download - view: text, annotated - select for diffs
Mon Oct 21 13:02:06 2002 UTC (21 years, 7 months ago) by fefe
Branches: MAIN
CVS tags: finnland_test_200301, branch_rc14_fieldtest_finnland, branch_rc13_fieldtest_finnland, branch_rc12_fieldtest_finnland, branch_rc10_fieldtest_finnland, RELEASE_finnland_200301_1, RC12_FIELDTEST_FINNLAND, RC10_FIELDTEST_FINNLAND, HEAD
reversed implementations

#include <errno.h>
#include "dietfeatures.h"
#ifdef WANT_LARGEFILE_BACKCOMPAT
#include <sys/stat.h>
#include "syscalls.h"
#include <unistd.h>
#ifndef __NO_STAT64
#ifdef __NR_ftruncate64

extern int __dietlibc_ftruncate64(int fd, loff_t o);

int ftruncate64(int fd, loff_t o) {
  int tmp;
  if ((tmp=__dietlibc_ftruncate64(fd,o))==-1) {
    if (errno!=ENOSYS) return -1;
    if (o>0x7fffffff) { errno=EOVERFLOW; return -1; }
    return ftruncate(fd,o);
  }
  return tmp;
}
#endif
#endif
#endif

LinuxTV legacy CVS <linuxtv.org/cvs>