]> pd.if.org Git - pdclib.old/blobdiff - functions/stdio/_PDCLIB_ftell64.c
Namespace cleanliness: Rename all ***_unlocked functions to _PDCLIB_***_unlocked.
[pdclib.old] / functions / stdio / _PDCLIB_ftell64.c
index 5be7be50692096453aa3f9f03fe1f6a53c56b56d..f72d2f96098ccfbe311bd5c4212eb23a18c9ed2e 100644 (file)
@@ -41,9 +41,9 @@ uint_fast64_t _PDCLIB_ftell64_unlocked( FILE * 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