diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2009-01-15 16:12:07 -0800 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-01-15 16:12:07 -0800 |
commit | e5cc1f386b167b9f7bfdebc7219e89aa9b71e4b2 (patch) | |
tree | 2cbd43daa6744ed80e833528f8cbfc0c485e5253 /libc/bionic | |
parent | 6d6c82c7a0a6b9a89f61b61c66f9b90d9c7177dc (diff) | |
download | bionic-e5cc1f386b167b9f7bfdebc7219e89aa9b71e4b2.zip bionic-e5cc1f386b167b9f7bfdebc7219e89aa9b71e4b2.tar.gz bionic-e5cc1f386b167b9f7bfdebc7219e89aa9b71e4b2.tar.bz2 |
auto import from //branches/cupcake/...@126645
Diffstat (limited to 'libc/bionic')
-rw-r--r-- | libc/bionic/__errno.c | 2 | ||||
-rw-r--r-- | libc/bionic/libc_init_common.c | 2 | ||||
-rw-r--r-- | libc/bionic/libc_init_static.c | 2 | ||||
-rw-r--r-- | libc/bionic/pthread.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/libc/bionic/__errno.c b/libc/bionic/__errno.c index ffc6e61..8f33cce 100644 --- a/libc/bionic/__errno.c +++ b/libc/bionic/__errno.c @@ -26,7 +26,7 @@ * SUCH DAMAGE. */ #include <errno.h> -#include <sys/tls.h> +#include <bionic_tls.h> volatile int* __errno( void ) { diff --git a/libc/bionic/libc_init_common.c b/libc/bionic/libc_init_common.c index 0944cb0..de4919d 100644 --- a/libc/bionic/libc_init_common.c +++ b/libc/bionic/libc_init_common.c @@ -36,7 +36,7 @@ #include "atexit.h" #include "libc_init_common.h" -#include <sys/tls.h> +#include <bionic_tls.h> #include <errno.h> extern void _init(void); diff --git a/libc/bionic/libc_init_static.c b/libc/bionic/libc_init_static.c index f5a1d80..ec463f7 100644 --- a/libc/bionic/libc_init_static.c +++ b/libc/bionic/libc_init_static.c @@ -55,7 +55,7 @@ #include "atexit.h" #include "libc_init_common.h" -#include <sys/tls.h> +#include <bionic_tls.h> #include <errno.h> __noreturn void __libc_init(uintptr_t *elfdata, diff --git a/libc/bionic/pthread.c b/libc/bionic/pthread.c index 2fd740e..6114f40 100644 --- a/libc/bionic/pthread.c +++ b/libc/bionic/pthread.c @@ -33,7 +33,7 @@ #include <stdlib.h> #include <errno.h> #include <sys/atomics.h> -#include <sys/tls.h> +#include <bionic_tls.h> #include <sys/mman.h> #include <pthread.h> #include <time.h> |