mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-11-03 20:53:13 +03:00 
			
		
		
		
	(passwd2des): Define it as an alias. (xencrypt, xdecrypt): Call passwd2des_internal instead of passwd2des. 2002-09-12 Bruno Haible <bruno@clisp.org> * include/sys/sysctl.h (__sysctl): Add libc_hidden_proto. * sysdeps/unix/sysv/linux/sysctl.c (__sysctl): Add libc_hidden_def. * include/rpc/xdr.h (xdrstdio_create): Add libc_hidden_proto. * sunrpc/xdr_stdio.c (xdrstdio_create): Add libc_hidden_def.
		
			
				
	
	
		
			11 lines
		
	
	
		
			299 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			299 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _SYS_SYSCTL_H
 | 
						|
#include_next <sys/sysctl.h>
 | 
						|
 | 
						|
/* Read or write system parameters (Linux, FreeBSD specific).  */
 | 
						|
extern int __sysctl (int *__name, int __nlen, void *__oldval,
 | 
						|
		     size_t *__oldlenp, void *__newval, size_t __newlen);
 | 
						|
libc_hidden_proto (__sysctl)
 | 
						|
 | 
						|
 | 
						|
#endif  /* _SYS_SYSCTL_H */
 |