summaryrefslogtreecommitdiff
path: root/include/sys
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-01-24 08:48:10 +0000
committerAndreas Jaeger <aj@suse.de>2001-01-24 08:48:10 +0000
commit1f3109a5f8b7facf9fa655ce48da3be0767141cd (patch)
tree6f9d332639b4f9ec69b18e17fcfed928df4588b5 /include/sys
parent7eff7a05a287495fd186d158793ae3c62094031f (diff)
Update.
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.
Diffstat (limited to 'include/sys')
-rw-r--r--include/sys/sysctl.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/sys/sysctl.h b/include/sys/sysctl.h
new file mode 100644
index 0000000000..db8e08da4a
--- /dev/null
+++ b/include/sys/sysctl.h
@@ -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 */