diff options
author | 2016-01-14 02:46:40 +0000 | |
---|---|---|
committer | 2016-01-14 02:46:40 +0000 | |
commit | 996ba68ab1a88963f08b4e668e440a8a4bfa203f (patch) | |
tree | c91317087824612925c6f2fedaf56a1b12013332 | |
parent | fix typo (diff) | |
download | wireguard-openbsd-996ba68ab1a88963f08b4e668e440a8a4bfa203f.tar.xz wireguard-openbsd-996ba68ab1a88963f08b4e668e440a8a4bfa203f.zip |
stdio.h is not needed here anymore.
-rw-r--r-- | usr.sbin/vmd/pci.c | 3 | ||||
-rw-r--r-- | usr.sbin/vmd/virtio.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/usr.sbin/vmd/pci.c b/usr.sbin/vmd/pci.c index e1f76bd8a14..754ddb078e4 100644 --- a/usr.sbin/vmd/pci.c +++ b/usr.sbin/vmd/pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci.c,v 1.5 2016/01/04 02:07:28 mlarkin Exp $ */ +/* $OpenBSD: pci.c,v 1.6 2016/01/14 02:46:40 mlarkin Exp $ */ /* * Copyright (c) 2015 Mike Larkin <mlarkin@openbsd.org> @@ -16,7 +16,6 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include <stdio.h> #include <string.h> #include <sys/types.h> #include <dev/pci/pcireg.h> diff --git a/usr.sbin/vmd/virtio.c b/usr.sbin/vmd/virtio.c index 4c2f7336fea..68e685654b5 100644 --- a/usr.sbin/vmd/virtio.c +++ b/usr.sbin/vmd/virtio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: virtio.c,v 1.6 2016/01/04 02:07:28 mlarkin Exp $ */ +/* $OpenBSD: virtio.c,v 1.7 2016/01/14 02:46:40 mlarkin Exp $ */ /* * Copyright (c) 2015 Mike Larkin <mlarkin@openbsd.org> @@ -18,7 +18,6 @@ #include <errno.h> #include <poll.h> -#include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> |