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/x86_64/clone.s | 1 + 1 file changed, 1 insertion(+) (limited to 'src/thread/x86_64') diff --git a/src/thread/x86_64/clone.s b/src/thread/x86_64/clone.s index ee59903a..6e47bc0a 100644 --- a/src/thread/x86_64/clone.s +++ b/src/thread/x86_64/clone.s @@ -1,5 +1,6 @@ .text .global __clone +.hidden __clone .type __clone,@function __clone: xor %eax,%eax -- cgit v1.2.1