aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2010-10-20 18:52:10 -0700
committerAndroid Code Review <code-review@android.com>2010-10-20 18:52:10 -0700
commitade2a92991d1c7edc32c4a300bd83d622fa1567d (patch)
treec4759946128839ebb2d12bdfd192fa97e79a1da4
parent2215c11325d0af07cde67bfee7bafa09ee5556a7 (diff)
parentc940945155fa8bf92e23bd1e8bd843cc41e9628d (diff)
downloadbionic-ade2a92991d1c7edc32c4a300bd83d622fa1567d.tar.gz
Merge "bionic: stubs: Make internal symbol static"
-rw-r--r--libc/bionic/stubs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/bionic/stubs.c b/libc/bionic/stubs.c
index d4956747d..a01d64c2f 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;