]> sourceware.org Git - newlib-cygwin.git/blobdiff - winsup/cygwin/dir.cc
* Merge in cygwin-64bit-branch.
[newlib-cygwin.git] / winsup / cygwin / dir.cc
index 25e55db27868229fa34ca009600bc64e6529fb62..478a41862c5fdee01831a3a64d26f5a1205a1999 100644 (file)
@@ -204,10 +204,10 @@ telldir (DIR *dir)
 /* telldir was never defined using off_t in POSIX, only in early versions
    of glibc.  We have to keep the function in as entry point for backward
    compatibility. */
-extern "C" _off64_t
+extern "C" off_t
 telldir64 (DIR *dir)
 {
-  return (_off64_t) telldir (dir);
+  return (off_t) telldir (dir);
 }
 
 /* seekdir */
@@ -228,7 +228,7 @@ seekdir (DIR *dir, long loc)
    of glibc.  We have to keep the function in as entry point for backward
    compatibility. */
 extern "C" void
-seekdir64 (DIR *dir, _off64_t loc)
+seekdir64 (DIR *dir, off_t loc)
 {
   seekdir (dir, (long) loc);
 }
This page took 0.024061 seconds and 5 git commands to generate.