]> pd.if.org Git - pdclib.old/blobdiff - functions/stdio/_PDCLIB_ftell64.c
[gandr] s/__lp64__/__LP64__/ to match GCC define
[pdclib.old] / functions / stdio / _PDCLIB_ftell64.c
index e0ea368e757e35b81bcdf0d606f7a283520b8971..f72d2f96098ccfbe311bd5c4212eb23a18c9ed2e 100644 (file)
@@ -11,8 +11,9 @@
 #include <limits.h>\r
 \r
 #ifndef REGTEST\r
+#include <_PDCLIB_io.h>\r
 \r
-uint_fast64_t _PDCLIB_ftell64_unlocked( struct _PDCLIB_file_t * stream )\r
+uint_fast64_t _PDCLIB_ftell64_unlocked( FILE * stream )\r
 {\r
     /* ftell() must take into account:\r
        - the actual *physical* offset of the file, i.e. the offset as recognized\r
@@ -38,11 +39,11 @@ uint_fast64_t _PDCLIB_ftell64_unlocked( struct _PDCLIB_file_t * stream )
     return ( stream->pos.offset - ( ( (int)stream->bufend - (int)stream->bufidx ) + (int)stream->ungetidx ) );\r
 }\r
 \r
-uint_fast64_t _PDCLIB_ftell64( struct _PDCLIB_file_t * stream )\r
+uint_fast64_t _PDCLIB_ftell64( FILE * stream )\r
 {\r
-  flockfile( stream );\r
+  _PDCLIB_flockfile( stream );\r
   uint_fast64_t pos = _PDCLIB_ftell64_unlocked( stream );\r
-  funlockfile( stream );\r
+  _PDCLIB_funlockfile( stream );\r
   return pos;\r
 }\r
 \r