From 0b5d467c1321a9bf96da027242e6e191d102d72a Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 13 Feb 2009 15:35:26 +0000 Subject: - repair my r25322 that ment to deal with getdomainname()'s visibility --- libc/sysdeps/linux/common/getdomainname.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'libc/sysdeps/linux/common/getdomainname.c') diff --git a/libc/sysdeps/linux/common/getdomainname.c b/libc/sysdeps/linux/common/getdomainname.c index 5cf8baa6b..cdea2172a 100644 --- a/libc/sysdeps/linux/common/getdomainname.c +++ b/libc/sysdeps/linux/common/getdomainname.c @@ -16,7 +16,11 @@ /* Experimentally off - libc_hidden_proto(strcpy) */ /* libc_hidden_proto(uname) */ -int getdomainname(char *name, size_t len) +int +#ifndef __UCLIBC_BSD_SPECIFIC__ +attribute_hidden +#endif +getdomainname(char *name, size_t len) { struct utsname uts; @@ -42,7 +46,7 @@ int getdomainname(char *name, size_t len) #endif return 0; } -#ifdef __UCLIBC_BSD_SPECIFIC__ +# ifdef __UCLIBC_BSD_SPECIFIC__ libc_hidden_def(getdomainname) -#endif +# endif #endif -- cgit v1.2.3