commit | ade2a92991d1c7edc32c4a300bd83d622fa1567d | [log] [tgz] |
---|---|---|
author | Jean-Baptiste Queru <jbq@google.com> | Wed Oct 20 18:52:10 2010 -0700 |
committer | Android Code Review <code-review@android.com> | Wed Oct 20 18:52:10 2010 -0700 |
tree | c4759946128839ebb2d12bdfd192fa97e79a1da4 | |
parent | 2215c11325d0af07cde67bfee7bafa09ee5556a7 [diff] | |
parent | c940945155fa8bf92e23bd1e8bd843cc41e9628d [diff] |
Merge "bionic: stubs: Make internal symbol static"
diff --git a/libc/bionic/stubs.c b/libc/bionic/stubs.c index d495674..a01d64c 100644 --- a/libc/bionic/stubs.c +++ b/libc/bionic/stubs.c
@@ -40,8 +40,8 @@ /** Thread-specific state for the stubs functions **/ -pthread_once_t the_once = PTHREAD_ONCE_INIT; -pthread_key_t the_key; +static pthread_once_t the_once = PTHREAD_ONCE_INIT; +static pthread_key_t the_key; typedef struct { struct passwd passwd;