aboutsummaryrefslogtreecommitdiffstats
path: root/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/util.c b/src/util.c
index 595f236..26e09a7 100644
--- a/src/util.c
+++ b/src/util.c
@@ -271,9 +271,6 @@ vweprintf(const char *fmt, va_list args)
{
int saved_errno;
const char *errstrprefix, *errstr;
-#if !defined(WINDOWS)
- int locked;
-#endif
saved_errno = errno;
if (!*fmt) {
@@ -289,19 +286,12 @@ vweprintf(const char *fmt, va_list args)
errstrprefix = "";
errstr = "";
}
-#if !defined(WINDOWS)
- locked = !flock(STDERR_FILENO, LOCK_EX);
-#endif
fprintf(stderr, "%s: ", argv0);
vfprintf(stderr, fmt, args);
if (errstr)
fprintf(stderr, "%s%s\n", errstrprefix, errstr);
-#if !defined(WINDOWS)
- if (locked)
- flock(STDERR_FILENO, LOCK_UN);
-#endif
errno = saved_errno;
}