blob: 2a15e91354d0174d928b15b6d9d2b92308212795 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _SYS_SYSCTL_H
#include_next <sys/sysctl.h>
# ifndef _ISOMAC
/* 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 /* !_ISOMAC */
#endif /* _SYS_SYSCTL_H */
|