summaryrefslogtreecommitdiff
path: root/usr.sbin/vmd/loadfile_elf.c
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2024-09-26 01:45:14 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2024-09-26 01:45:14 +0000
commit2cdbab1782671a444441c189869c2084fec746c2 (patch)
treecee78fa6274f8d76e47a96320c7f93e7ce681c5e /usr.sbin/vmd/loadfile_elf.c
parent907b408c533be544d99281856411275cead70a63 (diff)
remove unneeded includes; ok dv@ mlarkin@
Diffstat (limited to 'usr.sbin/vmd/loadfile_elf.c')
-rw-r--r--usr.sbin/vmd/loadfile_elf.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.sbin/vmd/loadfile_elf.c b/usr.sbin/vmd/loadfile_elf.c
index efe1e974b5c..2b62ca07565 100644
--- a/usr.sbin/vmd/loadfile_elf.c
+++ b/usr.sbin/vmd/loadfile_elf.c
@@ -1,5 +1,5 @@
/* $NetBSD: loadfile.c,v 1.10 2000/12/03 02:53:04 tsutsui Exp $ */
-/* $OpenBSD: loadfile_elf.c,v 1.49 2024/09/11 15:42:52 bluhm Exp $ */
+/* $OpenBSD: loadfile_elf.c,v 1.50 2024/09/26 01:45:13 jsg Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -82,19 +82,15 @@
*/
#include <sys/param.h> /* PAGE_SIZE PAGE_MASK roundup */
-#include <sys/ioctl.h>
#include <sys/reboot.h>
#include <sys/exec.h>
#include <elf.h>
-#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
#include <unistd.h>
-#include <fcntl.h>
#include <err.h>
-#include <stddef.h>
#include <dev/vmm/vmm.h>