From 5eb0d33ec0f08b123c5c10877d6258d05fa9453a Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 12 Mar 2011 21:55:45 -0500 Subject: implement flockfile api, rework stdio locking --- src/stdio/funlockfile.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/stdio/funlockfile.c (limited to 'src/stdio/funlockfile.c') diff --git a/src/stdio/funlockfile.c b/src/stdio/funlockfile.c new file mode 100644 index 00000000..d69f68ee --- /dev/null +++ b/src/stdio/funlockfile.c @@ -0,0 +1,7 @@ +#include "stdio_impl.h" +#include "pthread_impl.h" + +void funlockfile(FILE *f) +{ + FUNLOCK(f); +} -- cgit v1.2.1