From d191c24476242608c05d5671a4ce8c5564f7b722 Mon Sep 17 00:00:00 2001 From: reyk Date: Fri, 19 Dec 2014 15:07:33 +0000 Subject: [PATCH] No need to include sys/types.h when sys/param.h is already included. While here, sort includes a bit. No functional change. --- sys/dev/vmt.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/dev/vmt.c b/sys/dev/vmt.c index 7686fe64cb3..a48abe78fe0 100644 --- a/sys/dev/vmt.c +++ b/sys/dev/vmt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vmt.c,v 1.24 2014/12/18 19:31:37 reyk Exp $ */ +/* $OpenBSD: vmt.c,v 1.25 2014/12/19 15:07:33 reyk Exp $ */ /* * Copyright (c) 2007 David Crawshaw @@ -21,8 +21,6 @@ #error vmt(4) is only supported on i386 and amd64 #endif -#include - /* * Protocol reverse engineered by Ken Kato: * http://chitchat.at.infoseek.co.jp/vmware/backdoor.html @@ -31,17 +29,19 @@ #include #include #include -#include #include #include #include #include #include #include + #include #include #include + #include +#include /* "The" magic number, always occupies the EAX register. */ #define VM_MAGIC 0x564D5868 -- 2.20.1