X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=functions%2Fstdio%2F_PDCLIB_ftell64.c;h=f72d2f96098ccfbe311bd5c4212eb23a18c9ed2e;hp=5be7be50692096453aa3f9f03fe1f6a53c56b56d;hb=b5b6c4a890795ea76f9b92b817b0a83c6bb4862c;hpb=aa8b812cace09efe5e21f191761a5258b266b87b diff --git a/functions/stdio/_PDCLIB_ftell64.c b/functions/stdio/_PDCLIB_ftell64.c index 5be7be5..f72d2f9 100644 --- a/functions/stdio/_PDCLIB_ftell64.c +++ b/functions/stdio/_PDCLIB_ftell64.c @@ -41,9 +41,9 @@ uint_fast64_t _PDCLIB_ftell64_unlocked( FILE * stream ) uint_fast64_t _PDCLIB_ftell64( FILE * stream ) { - flockfile( stream ); + _PDCLIB_flockfile( stream ); uint_fast64_t pos = _PDCLIB_ftell64_unlocked( stream ); - funlockfile( stream ); + _PDCLIB_funlockfile( stream ); return pos; }