2012-11-07 Andreas Jaeger <aj@suse.de>
[platform/upstream/glibc.git] / sysdeps / unix / sysv / linux / sys / sysctl.h
1 /* Copyright (C) 1996-2012 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
4    The GNU C Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Lesser General Public
6    License as published by the Free Software Foundation; either
7    version 2.1 of the License, or (at your option) any later version.
8
9    The GNU C Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Lesser General Public License for more details.
13
14    You should have received a copy of the GNU Lesser General Public
15    License along with the GNU C Library; if not, see
16    <http://www.gnu.org/licenses/>.  */
17
18 #ifndef _SYS_SYSCTL_H
19 #define _SYS_SYSCTL_H   1
20
21 #include <features.h>
22 #define __need_size_t
23 #include <stddef.h>
24 /* Prevent more kernel headers than necessary to be included.  */
25 #ifndef _LINUX_KERNEL_H
26 # define _LINUX_KERNEL_H        1
27 # define __undef_LINUX_KERNEL_H
28 #endif
29 #ifndef _LINUX_TYPES_H
30 # define _LINUX_TYPES_H         1
31 # define __undef_LINUX_TYPES_H
32 #endif
33 #ifndef _LINUX_LIST_H
34 # define _LINUX_LIST_H          1
35 # define __undef_LINUX_LIST_H
36 #endif
37 #ifndef __LINUX_COMPILER_H
38 # define __LINUX_COMPILER_H     1
39 # define __user
40 # define __undef__LINUX_COMPILER_H
41 #endif
42 #ifndef  _UAPI_LINUX_KERNEL_H
43 # define _UAPI_LINUX_KERNEL_H
44 # define __undef_UAPI_LINUX_KERNEL_H
45 #endif
46 #ifndef _UAPI_LINUX_TYPES_H
47 # define _UAPI_LINUX_TYPES_H
48 # define __undef_UAPI_LINUX_TYPES_H
49 #endif
50
51 #include <linux/sysctl.h>
52
53 #ifdef __undef_LINUX_KERNEL_H
54 # undef _LINUX_KERNEL_H
55 # undef __undef_LINUX_KERNEL_H
56 #endif
57 #ifdef __undef_LINUX_TYPES_H
58 # undef _LINUX_TYPES_H
59 # undef __undef_LINUX_TYPES_H
60 #endif
61 #ifdef __undef_LINUX_LIST_H
62 # undef _LINUX_LIST_H
63 # undef __undef_LINUX_LIST_H
64 #endif
65 #ifdef __undef__LINUX_COMPILER_H
66 # undef __LINUX_COMPILER_H
67 # undef __user
68 # undef __undef__LINUX_COMPILER_H
69 #endif
70 #ifdef  __undef_UAPI_LINUX_KERNEL_H
71 # undef _UAPI_LINUX_KERNEL_H
72 # undef __undef_UAPI_LINUX_KERNEL_H
73 #endif
74 #ifdef __undef_UAPI_LINUX_TYPES_H
75 # undef _UAPI_LINUX_TYPES_H
76 # undef __undef_UAPI_LINUX_TYPES_H
77 #endif
78
79 #include <bits/sysctl.h>
80
81 __BEGIN_DECLS
82
83 /* Read or write system parameters.  */
84 extern int sysctl (int *__name, int __nlen, void *__oldval,
85                    size_t *__oldlenp, void *__newval, size_t __newlen) __THROW;
86
87 __END_DECLS
88
89 #endif  /* _SYS_SYSCTL_H */