]> pd.if.org Git - pdclib/blobdiff - functions/stdio/fsetpos.c
Removed SVN keyword tags.
[pdclib] / functions / stdio / fsetpos.c
index ed3c0a8cfc0372ffbc40fc97e403fbe9a020793a..8e281542b817188e177e977f67c0722bcca17672 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* fsetpos( FILE *, const fpos_t * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -11,7 +9,7 @@
 #ifndef REGTEST
 #include <_PDCLIB_io.h>
 
-int fsetpos_unlocked( FILE * stream, 
+int _PDCLIB_fsetpos_unlocked( FILE * stream, 
                       const _PDCLIB_fpos_t * pos )
 {
     if ( stream->status & _PDCLIB_FWRITE )
@@ -33,9 +31,9 @@ int fsetpos_unlocked( FILE * stream,
 int fsetpos( FILE * stream, 
              const _PDCLIB_fpos_t * pos )
 {
-    flockfile( stream );
-    int res = fsetpos_unlocked( stream, pos );
-    funlockfile( stream );
+    _PDCLIB_flockfile( stream );
+    int res = _PDCLIB_fsetpos_unlocked( stream, pos );
+    _PDCLIB_funlockfile( stream );
     return res;
 }