1 /* funlockfile(FILE * )
\r
3 This file is part of the Public Domain C Library (PDCLib).
\r
4 Permission is granted to use, modify, and / or redistribute at will.
\r
11 #include <_PDCLIB_io.h>
\r
12 #include <threads.h>
\r
15 void funlockfile( FILE * file )
\r
17 int res = mtx_unlock( &file->lock );
\r
30 #include <_PDCLIB_test.h>
\r
34 // Not tested here - tested by other stdio test drivers
\r
35 return TEST_RESULTS;
\r