From f5f7673d71f843b423e60bbdd7de49fd1bbcc8c1 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 10 Sep 2018 15:36:33 -0400 Subject: 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. --- src/thread/mips/clone.s | 1 + 1 file changed, 1 insertion(+) (limited to 'src/thread/mips') diff --git a/src/thread/mips/clone.s b/src/thread/mips/clone.s index 30a0146b..04463385 100644 --- a/src/thread/mips/clone.s +++ b/src/thread/mips/clone.s @@ -1,5 +1,6 @@ .set noreorder .global __clone +.hidden __clone .type __clone,@function __clone: # Save function pointer and argument pointer on new thread stack -- cgit v1.2.1