X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2F_PDCLIB_ftell64.c;h=f72d2f96098ccfbe311bd5c4212eb23a18c9ed2e;hp=5be7be50692096453aa3f9f03fe1f6a53c56b56d;hb=202af43c19ec4f5f1d1b2827a7ef0b46abfebed5;hpb=c45b8c52827f1ea733cf211045d8d5b7bedcc970 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; }