-/* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
#ifdef __NR_ftruncate64
#ifndef __ASSUME_TRUNCATE64_SYSCALL
/* The variable is shared between all wrappers around *truncate64 calls. */
-extern int have_no_truncate64;
+extern int __have_no_truncate64;
#endif
extern int __syscall_ftruncate64 (int fd, int high_length, int low_length);
int fd;
off64_t length;
{
- if (! have_no_truncate64)
+ if (! __have_no_truncate64)
{
unsigned int low = length & 0xffffffff;
unsigned int high = length >> 32;
return result;
__set_errno (saved_errno);
- have_no_truncate64 = 1;
+ __have_no_truncate64 = 1;
}
if ((off_t) length != length)
-/* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
#ifdef __NR_truncate64
/* The variable is shared between all wrappers around *truncate64 calls. */
-int have_no_truncate64;
+int __have_no_truncate64;
extern int __syscall_truncate64 (int fd, int high_length, int low_length);
const char *path;
off64_t length;
{
- if (! have_no_truncate64)
+ if (! __have_no_truncate64)
{
unsigned int low = length & 0xffffffff;
unsigned int high = length >> 32;
return result;
__set_errno (saved_errno);
- have_no_truncate64 = 1;
+ __have_no_truncate64 = 1;
}
if ((off_t) length != length)