1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00
2001-01-24  Andreas Jaeger  <aj@suse.de>

	* sysdeps/unix/sysv/linux/init-first.c: Remove extra __sysctl
	prototype.
	* sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.

	* include/sys/sysctl.h: New.

	* stdlib/Makefile ($(objpfx)isomac.out): Also pass sysincludes to
	isomac.
This commit is contained in:
Andreas Jaeger
2001-01-24 08:48:10 +00:00
parent 7eff7a05a2
commit 1f3109a5f8
4 changed files with 21 additions and 12 deletions

9
include/sys/sysctl.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef _SYS_SYSCTL_H
#include_next <sys/sysctl.h>
/* Read or write system parameters (Linux specific). */
extern int __sysctl (int *__name, int __nlen, void *__oldval,
size_t *__oldlenp, void *__newval, size_t __newlen);
#endif /* _SYS_SYSCTL_H */