]> pd.if.org Git - pdclib/blobdiff - functions/stdio/fflush.c
Removed SVN keyword tags.
[pdclib] / functions / stdio / fflush.c
index e03079fcc9c17fdf661a961b77fdbec46cbbab60..85bd234b5a94cca01ea0b3a403b4b9d1a060bf1b 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* fflush( FILE * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -13,7 +11,7 @@
 
 extern FILE * _PDCLIB_filelist;
 
-int fflush_unlocked( FILE * stream )
+int _PDCLIB_fflush_unlocked( FILE * stream )
 {
     if ( stream == NULL )
     {
@@ -41,9 +39,9 @@ int fflush_unlocked( FILE * stream )
 
 int fflush( FILE * stream )
 {
-    flockfile( stream );
-    int res = fflush_unlocked(stream);
-    funlockfile( stream );
+    _PDCLIB_flockfile( stream );
+    int res = _PDCLIB_fflush_unlocked(stream);
+    _PDCLIB_funlockfile( stream );
     return res;
 }