| 1 | #ifndef _SYS_SYSCTL_H |
|---|---|
| 2 | #include_next <sys/sysctl.h> |
| 3 | |
| 4 | # ifndef _ISOMAC |
| 5 | |
| 6 | /* Read or write system parameters (Linux, FreeBSD specific). */ |
| 7 | extern int __sysctl (int *__name, int __nlen, void *__oldval, |
| 8 | size_t *__oldlenp, void *__newval, size_t __newlen); |
| 9 | libc_hidden_proto (__sysctl) |
| 10 | |
| 11 | |
| 12 | # endif /* !_ISOMAC */ |
| 13 | #endif /* _SYS_SYSCTL_H */ |
| 14 |