summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2016-04-07 05:51:27 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2016-04-07 05:51:27 +0000
commit77a0d6b24beda4bc7234a73a7042fdceef381994 (patch)
treeb297cce28dee28632edc46103bc281208870de77
parenta5fb18fc5b38b2b1d3498ef097602f428542b8b5 (diff)
Remove headers associated with code that's been moved to other .c files
ok mlarkin@
-rw-r--r--usr.sbin/vmd/vmm.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/usr.sbin/vmd/vmm.c b/usr.sbin/vmd/vmm.c
index 8c7eddf2df7..4ae471a3835 100644
--- a/usr.sbin/vmd/vmm.c
+++ b/usr.sbin/vmd/vmm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmm.c,v 1.25 2016/04/05 09:33:05 mlarkin Exp $ */
+/* $OpenBSD: vmm.c,v 1.26 2016/04/07 05:51:26 guenther Exp $ */
/*
* Copyright (c) 2015 Mike Larkin <mlarkin@openbsd.org>
@@ -21,10 +21,6 @@
#include <sys/queue.h>
#include <sys/uio.h>
#include <sys/socket.h>
-#include <sys/stat.h>
-#include <sys/un.h>
-#include <sys/wait.h>
-#include <sys/mman.h>
#include <sys/time.h>
#include <dev/ic/comreg.h>
@@ -41,16 +37,10 @@
#include <imsg.h>
#include <limits.h>
#include <pthread.h>
-#include <pwd.h>
-#include <signal.h>
-#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <syslog.h>
-#include <termios.h>
#include <unistd.h>
-#include <poll.h>
#include <util.h>
#include "vmd.h"