mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-10-31 22:10:34 +03:00 
			
		
		
		
	Since ld.so internel __uname is only used internally in ld.so, it can be made hidden. [BZ #19122] * include/sys/utsname.h [IS_IN (rtld)] (__uname): Add attribute_hidden.
		
			
				
	
	
		
			15 lines
		
	
	
		
			264 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			264 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef	_SYS_UTSNAME_H
 | |
| #include <posix/sys/utsname.h>
 | |
| 
 | |
| #ifndef _ISOMAC
 | |
| extern int __uname (struct utsname *__name);
 | |
| 
 | |
| libc_hidden_proto (uname)
 | |
| libc_hidden_proto (__uname)
 | |
| 
 | |
| # if IS_IN (rtld)
 | |
| extern __typeof (__uname) __uname attribute_hidden;
 | |
| # endif
 | |
| #endif
 | |
| #endif
 |