Define __have_no_fcntl64 static.

This commit is contained in:
Ulrich Drepper 2000-08-12 08:46:30 +00:00
parent 977588cd93
commit 966e8ffc00
1 changed files with 9 additions and 9 deletions

View File

@ -27,8 +27,7 @@
#if __ASSUME_FCNTL64 == 0
/* This variable is shared with all files that check for fcntl64. */
int __have_no_fcntl64;
# endif
static int __have_no_fcntl64;
#endif
int
@ -99,6 +98,7 @@ __libc_fcntl (int fd, int cmd, ...)
{
struct flock fl;
struct flock64 *fl64 = arg;
fl.l_start = (off_t) fl64->l_start;
/* Check if we can represent the values with the smaller type. */
if ((off64_t) fl.l_start != fl64->l_start)