summaryrefslogtreecommitdiff
path: root/physmap.c
diff options
context:
space:
mode:
authorhailfinger <hailfinger@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2010-06-21 23:20:15 +0000
committerhailfinger <hailfinger@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2010-06-21 23:20:15 +0000
commit3f52c8813d2846effdcfcd3abef9d0f53240a56b (patch)
tree21e5b1ed74666095913b80cbb08fb0a822bf14ba /physmap.c
parent854211f63b8ccc45a2a834e7d7b378aec2055ba0 (diff)
downloadflashrom-3f52c8813d2846effdcfcd3abef9d0f53240a56b.tar.gz
Kill unneeded #include wherever possible.
Tested on Linux, FreeBSD, NetBSD, OpenBSD, DOS. Thanks to Jonathan A. Kollasch and Idwer Vollering for testing. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Idwer Vollering <vidwer+lists.flashrom@gmail.com> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1057 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'physmap.c')
-rw-r--r--physmap.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/physmap.c b/physmap.c
index 7642938..c65df30 100644
--- a/physmap.c
+++ b/physmap.c
@@ -23,13 +23,17 @@
#include <unistd.h>
#include <stdio.h>
#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
-#include <errno.h>
#include "flash.h"
+/* Do we need any file access or ioctl for physmap or MSR? */
+#if !defined(__DJGPP__)
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <errno.h>
+#endif
+
#ifdef __DJGPP__
#include <dpmi.h>
#include <sys/nearptr.h>