diff options
Diffstat (limited to 'stdio-common/funlockfile.c')
-rw-r--r-- | stdio-common/funlockfile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stdio-common/funlockfile.c b/stdio-common/funlockfile.c index 50f2f99948..961fa3d250 100644 --- a/stdio-common/funlockfile.c +++ b/stdio-common/funlockfile.c @@ -17,13 +17,13 @@ <https://www.gnu.org/licenses/>. */ #include <stdio.h> - -#undef _IO_funlockfile +#include <stdio-lock.h> +#include <sys/single_threaded.h> void __funlockfile (FILE *stream) { - /* Do nothing. Using this version does not do any locking. */ + _IO_lock_unlock (*stream->_lock); } weak_alias (__funlockfile, _IO_funlockfile) weak_alias (__funlockfile, funlockfile); |