xref: /openbsd-src/lib/libc/hidden/sys/sysctl.h (revision 8aa47ebb999260edca793a49515f60302422f5b3)
1*8aa47ebbSguenther /*	$OpenBSD: sysctl.h,v 1.1 2015/09/13 20:54:33 guenther Exp $	*/
2*8aa47ebbSguenther /*
3*8aa47ebbSguenther  * Copyright (c) 2015 Philip Guenther <guenther@openbsd.org>
4*8aa47ebbSguenther  *
5*8aa47ebbSguenther  * Permission to use, copy, modify, and distribute this software for any
6*8aa47ebbSguenther  * purpose with or without fee is hereby granted, provided that the above
7*8aa47ebbSguenther  * copyright notice and this permission notice appear in all copies.
8*8aa47ebbSguenther  *
9*8aa47ebbSguenther  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10*8aa47ebbSguenther  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11*8aa47ebbSguenther  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12*8aa47ebbSguenther  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13*8aa47ebbSguenther  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14*8aa47ebbSguenther  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15*8aa47ebbSguenther  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16*8aa47ebbSguenther  */
17*8aa47ebbSguenther 
18*8aa47ebbSguenther #ifndef _LIBC_SYS_SYSCTL_H_
19*8aa47ebbSguenther #define	_LIBC_SYS_SYSCTL_H_
20*8aa47ebbSguenther 
21*8aa47ebbSguenther #include_next <sys/sysctl.h>
22*8aa47ebbSguenther 
23*8aa47ebbSguenther PROTO_NORMAL(sysctl);
24*8aa47ebbSguenther 
25*8aa47ebbSguenther #endif	/* !_LIBC_SYS_SYSCTL_H_ */
26