mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 14:10:05 -04:00
include <sys/param.h> for NetBSD
This commit is contained in:
parent
1195e2e1f2
commit
e3421eaa6c
1 changed files with 3 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: os.c,v 1.13 2004/03/05 05:11:46 marka Exp $ */
|
||||
/* $Id: os.c,v 1.14 2004/05/12 23:01:36 explorer Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -55,7 +55,8 @@ hpux_ncpus(void) {
|
|||
#endif /* __hpux */
|
||||
|
||||
#if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTLBYNAME)
|
||||
#include <sys/types.h>
|
||||
#include <sys/types.h> /* for FreeBSD */
|
||||
#include <sys/param.h> /* for NetBSD */
|
||||
#include <sys/sysctl.h>
|
||||
|
||||
static int
|
||||
|
|
|
|||
Loading…
Reference in a new issue