fix build (stdbool lossage)
This commit is contained in:
parent
138650eddf
commit
9495115b2a
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: mbuf.c,v 1.31 2012/03/20 20:34:58 matt Exp $ */
|
/* $NetBSD: mbuf.c,v 1.32 2015/07/28 19:32:07 christos Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1983, 1988, 1993
|
* Copyright (c) 1983, 1988, 1993
|
||||||
|
@ -34,11 +34,12 @@
|
||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "from: @(#)mbuf.c 8.1 (Berkeley) 6/6/93";
|
static char sccsid[] = "from: @(#)mbuf.c 8.1 (Berkeley) 6/6/93";
|
||||||
#else
|
#else
|
||||||
__RCSID("$NetBSD: mbuf.c,v 1.31 2012/03/20 20:34:58 matt Exp $");
|
__RCSID("$NetBSD: mbuf.c,v 1.32 2015/07/28 19:32:07 christos Exp $");
|
||||||
#endif
|
#endif
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
#define __POOL_EXPOSE
|
#define __POOL_EXPOSE
|
||||||
|
#include <stdbool.h> // XXX: no <sys/stdbool.h>
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/protosw.h>
|
#include <sys/protosw.h>
|
||||||
|
@ -53,7 +54,6 @@ __RCSID("$NetBSD: mbuf.c,v 1.31 2012/03/20 20:34:58 matt Exp $");
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <err.h>
|
#include <err.h>
|
||||||
#include <stdbool.h>
|
|
||||||
#include "netstat.h"
|
#include "netstat.h"
|
||||||
#include "prog_ops.h"
|
#include "prog_ops.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue