diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-09-10 15:36:33 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 14:34:31 -0400 |
commit | f5f7673d71f843b423e60bbdd7de49fd1bbcc8c1 (patch) | |
tree | bd8bad5b8da870134071dd2237974604b5511fb6 /src/internal | |
parent | 1bbe166e15e2c005c49c0aa53b8d106315d95ad0 (diff) | |
download | musl-f5f7673d71f843b423e60bbdd7de49fd1bbcc8c1.tar.gz musl-f5f7673d71f843b423e60bbdd7de49fd1bbcc8c1.tar.bz2 musl-f5f7673d71f843b423e60bbdd7de49fd1bbcc8c1.tar.xz musl-f5f7673d71f843b423e60bbdd7de49fd1bbcc8c1.zip |
make arch __clone backends hidden
these are not a public interface and are not intended to be callable
from anywhere but the public clone function or other places in libc.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/pthread_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/pthread_impl.h b/src/internal/pthread_impl.h index 3479bcf6..3c85544c 100644 --- a/src/internal/pthread_impl.h +++ b/src/internal/pthread_impl.h @@ -141,7 +141,7 @@ int __init_tp(void *); void *__copy_tls(unsigned char *); void __reset_tls(); -int __clone(int (*)(void *), void *, int, void *, ...); +hidden int __clone(int (*)(void *), void *, int, void *, ...); int __set_thread_area(void *); int __libc_sigaction(int, const struct sigaction *, struct sigaction *); void __unmapself(void *, size_t); |