summary refs log tree commit diff
path: root/libio/ioseekpos.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/ioseekpos.c')
-rw-r--r--libio/ioseekpos.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libio/ioseekpos.c b/libio/ioseekpos.c
index 9863ece3af..5e8b0ff2cc 100644
--- a/libio/ioseekpos.c
+++ b/libio/ioseekpos.c
@@ -26,8 +26,8 @@
 
 #include <libioP.h>
 
-_IO_off64_t
-_IO_seekpos_unlocked (_IO_FILE *fp, _IO_off64_t pos, int mode)
+off64_t
+_IO_seekpos_unlocked (FILE *fp, off64_t pos, int mode)
 {
   /* If we have a backup buffer, get rid of it, since the __seekoff
      callback may not know to do the right thing about it.
@@ -47,10 +47,10 @@ _IO_seekpos_unlocked (_IO_FILE *fp, _IO_off64_t pos, int mode)
 }
 
 
-_IO_off64_t
-_IO_seekpos (_IO_FILE *fp, _IO_off64_t pos, int mode)
+off64_t
+_IO_seekpos (FILE *fp, off64_t pos, int mode)
 {
-  _IO_off64_t retval;
+  off64_t retval;
 
   _IO_acquire_lock (fp);
   retval = _IO_seekpos_unlocked (fp, pos, mode);