1290838Srodrigc/*-
2290838Srodrigc * Copyright (c) 2015 Craig Rodrigues
3290838Srodrigc * All rights reserved.
4290838Srodrigc *
5290838Srodrigc * Redistribution and use in source and binary forms, with or without
6290838Srodrigc * modification, are permitted provided that the following conditions
7290838Srodrigc * are met:
8290838Srodrigc * 1. Redistributions of source code must retain the above copyright
9290838Srodrigc *    notice, this list of conditions and the following disclaimer.
10290838Srodrigc * 2. Redistributions in binary form must reproduce the above copyright
11290838Srodrigc *    notice, this list of conditions and the following disclaimer in the
12290838Srodrigc *    documentation and/or other materials provided with the distribution.
13290838Srodrigc *
14290838Srodrigc * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15290838Srodrigc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16290838Srodrigc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17290838Srodrigc * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18290838Srodrigc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19290838Srodrigc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20290838Srodrigc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21290838Srodrigc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22290838Srodrigc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23290838Srodrigc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24290838Srodrigc * SUCH DAMAGE.
25290838Srodrigc *
26290838Srodrigc * $FreeBSD$
27290838Srodrigc */
28290838Srodrigc
29290838Srodrigc#ifndef _LIBOPENBSD_SYS_SYSCTL_H_
30290838Srodrigc#define _LIBOPENBSD_SYS_SYSCTL_H_
31290838Srodrigc
32290838Srodrigc#include_next <sys/sysctl.h>
33290838Srodrigc
34290838Srodrigc#ifndef KERN_PROC_NFDS
35290838Srodrigc#define	KERN_PROC_NFDS		43	/* number of open file descriptors */
36290838Srodrigc#endif
37290838Srodrigc
38290838Srodrigc#endif /* _LIBOPENBSD_SYS_SYSCTL_H_ */
39