summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordlg <dlg@openbsd.org>2014-08-18 04:23:11 +0000
committerdlg <dlg@openbsd.org>2014-08-18 04:23:11 +0000
commit71725f304ca33ba76b9719d08d8919510c9a50f2 (patch)
tree472c2c21cfaeed3ba61faca13d453d2ad66d376e
parentintroduce mbuf list and queue apis. both manage fifo lists of mbufs (diff)
downloadwireguard-openbsd-71725f304ca33ba76b9719d08d8919510c9a50f2.tar.xz
wireguard-openbsd-71725f304ca33ba76b9719d08d8919510c9a50f2.zip
its a bit silly to include mbuf.h to get to malloc.h. just include
malloc.h instead.
-rw-r--r--sys/dev/pcmcia/pcmcia_cis_quirks.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pcmcia/pcmcia_cis_quirks.c b/sys/dev/pcmcia/pcmcia_cis_quirks.c
index 05e4d00f923..5b26a362e7a 100644
--- a/sys/dev/pcmcia/pcmcia_cis_quirks.c
+++ b/sys/dev/pcmcia/pcmcia_cis_quirks.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pcmcia_cis_quirks.c,v 1.10 2014/07/12 18:48:52 tedu Exp $ */
+/* $OpenBSD: pcmcia_cis_quirks.c,v 1.11 2014/08/18 04:23:11 dlg Exp $ */
/* $NetBSD: pcmcia_cis_quirks.c,v 1.3 1998/12/29 09:00:28 marc Exp $ */
/*
@@ -33,8 +33,8 @@
#include <sys/types.h>
#include <sys/param.h>
#include <sys/systm.h>
+#include <sys/malloc.h>
#include <sys/device.h>
-#include <sys/mbuf.h>
#include <dev/pcmcia/pcmciadevs.h>
#include <dev/pcmcia/pcmciareg.h>