summaryrefslogtreecommitdiff
path: root/src/stdio
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio')
-rw-r--r--src/stdio/flockfile.c2
-rw-r--r--src/stdio/funlockfile.c2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/stdio/flockfile.c b/src/stdio/flockfile.c
index 6806cf8b..8e220651 100644
--- a/src/stdio/flockfile.c
+++ b/src/stdio/flockfile.c
@@ -1,8 +1,6 @@
#include "stdio_impl.h"
#include "pthread_impl.h"
-void __register_locked_file(FILE *, pthread_t);
-
void flockfile(FILE *f)
{
if (!ftrylockfile(f)) return;
diff --git a/src/stdio/funlockfile.c b/src/stdio/funlockfile.c
index 30a07ef4..44d8b0df 100644
--- a/src/stdio/funlockfile.c
+++ b/src/stdio/funlockfile.c
@@ -1,8 +1,6 @@
#include "stdio_impl.h"
#include "pthread_impl.h"
-void __unlist_locked_file(FILE *);
-
void funlockfile(FILE *f)
{
if (f->lockcount == 1) {