From 6287cacef2feb129050449d79769b5fd907e1062 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 26 Mar 2012 23:50:12 -0400 Subject: ldso: mark _start hidden There's no need to export this symbol, so mark them all hidden. Signed-off-by: Mike Frysinger --- ldso/ldso/i386/dl-startup.h | 1 + 1 file changed, 1 insertion(+) (limited to 'ldso/ldso/i386') diff --git a/ldso/ldso/i386/dl-startup.h b/ldso/ldso/i386/dl-startup.h index 973ed72cb..125132c87 100644 --- a/ldso/ldso/i386/dl-startup.h +++ b/ldso/ldso/i386/dl-startup.h @@ -7,6 +7,7 @@ __asm__ ( " .text\n" " .globl _start\n" " .type _start,@function\n" + " .hidden _start\n" "_start:\n" " call _dl_start\n" " # Save the user entry point address in %edi.\n" -- cgit v1.2.3