aboutsummaryrefslogtreecommitdiff
path: root/libio/iofsetpos64.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/iofsetpos64.c')
-rw-r--r--libio/iofsetpos64.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libio/iofsetpos64.c b/libio/iofsetpos64.c
index c3eec375f5..f8c5374d17 100644
--- a/libio/iofsetpos64.c
+++ b/libio/iofsetpos64.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993, 1995, 1997-1999, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1993, 1995, 1997-2000, 2002 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
@@ -39,7 +39,8 @@ _IO_new_fsetpos64 (fp, posp)
CHECK_FILE (fp, EOF);
_IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile, fp);
_IO_flockfile (fp);
- if (_IO_seekpos (fp, posp->__pos, _IOS_INPUT|_IOS_OUTPUT) == _IO_pos_BAD)
+ if (INTUSE(_IO_seekpos) (fp, posp->__pos, _IOS_INPUT|_IOS_OUTPUT)
+ == _IO_pos_BAD)
{
/* ANSI explicitly requires setting errno to a positive value on
failure. */