revise the definition of multiple basic locks in the code

In all cases this is just a change from two volatile int to one.
This commit is contained in:
Jens Gustedt
2018-01-09 13:15:27 -05:00
committed by Rich Felker
parent c4bc0b1a64
commit 32482f61da
15 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -11,7 +11,7 @@
#include <fcntl.h>
#include "libc.h"
static volatile int lock[2];
static volatile int lock[1];
static char log_ident[32];
static int log_opt;
static int log_facility = LOG_USER;