X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2F_PDCLIB_ftell64.c;h=488f46196a09e19f7b7a3b201c8d22005168b734;hb=e1c526e9bad3f6e69391e94059096145390508d3;hp=5be7be50692096453aa3f9f03fe1f6a53c56b56d;hpb=0a419d48138f1411d6e3e50a367b9ece5a2cf893;p=pdclib diff --git a/functions/stdio/_PDCLIB_ftell64.c b/functions/stdio/_PDCLIB_ftell64.c index 5be7be5..488f461 100644 --- a/functions/stdio/_PDCLIB_ftell64.c +++ b/functions/stdio/_PDCLIB_ftell64.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* _PDCLIB_ftell64( FILE * ) This file is part of the Public Domain C Library (PDCLib). @@ -41,9 +39,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; }