about summary refs log tree commit diff
path: root/src/thread/powerpc
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2018-09-10 15:36:33 -0400
committerRich Felker <dalias@aerifal.cx>2018-09-12 14:34:31 -0400
commitf5f7673d71f843b423e60bbdd7de49fd1bbcc8c1 (patch)
treebd8bad5b8da870134071dd2237974604b5511fb6 /src/thread/powerpc
parent1bbe166e15e2c005c49c0aa53b8d106315d95ad0 (diff)
downloadmusl-f5f7673d71f843b423e60bbdd7de49fd1bbcc8c1.tar.gz
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/thread/powerpc')
-rw-r--r--src/thread/powerpc/clone.s1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/thread/powerpc/clone.s b/src/thread/powerpc/clone.s
index a57dbcce..da13f446 100644
--- a/src/thread/powerpc/clone.s
+++ b/src/thread/powerpc/clone.s
@@ -1,5 +1,6 @@
 .text
 .global __clone
+.hidden __clone
 .type __clone, %function
 __clone:
 # int clone(fn, stack, flags, arg, ptid, tls, ctid)