mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-25 12:11:10 +00:00
10 lines
261 B
C
10 lines
261 B
C
|
#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 */
|