]> pd.if.org Git - pdclib/blobdiff - functions/stdio/setvbuf.c
Removed SVN keyword tags.
[pdclib] / functions / stdio / setvbuf.c
index d8470fc0edff1d91fcda0f9fc23b759b7045048d..0cd942285553ae77ec6ce9ff59b8efc871b61ce0 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* setvbuf( FILE *, char *, int, size_t )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -15,7 +13,7 @@
 
 int setvbuf( FILE * _PDCLIB_restrict stream, char * _PDCLIB_restrict buf, int mode, size_t size )
 {
-    _PDCLIB_lockfile( stream );
+    _PDCLIB_flockfile( stream );
     switch ( mode )
     {
         case _IONBF: