fix external dummy_lock symbol inadvertently introduced in sigaction

commit 9b14ad5410 introduced this
namespace violation.
This commit is contained in:
Rich Felker 2019-08-17 22:31:40 -04:00
parent 827aa8fbca
commit d0209a2a33
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
#include "lock.h"
#include "ksigaction.h"
volatile int dummy_lock[1] = { 0 };
static volatile int dummy_lock[1] = { 0 };
extern hidden volatile int __abort_lock[1];