summaryrefslogtreecommitdiff
path: root/nasmlib
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@linux.intel.com>2016-10-19 13:13:38 -0700
committerH. Peter Anvin <hpa@linux.intel.com>2016-10-19 13:13:38 -0700
commit4c9132e3a0131dd5d06fbe4a739ce032271f6d44 (patch)
treecadd74bb61b43a253c9f234863ff00f981e6d225 /nasmlib
parent1fe546cf35db81bc799772e7cfad297477de2bd4 (diff)
downloadnasm-4c9132e3a0131dd5d06fbe4a739ce032271f6d44.tar.gz
compiler.h: include <sys/types.h>
Apparently, at least on some OS/2 compilers, <sys/types.h> needs to be included for off_t to be defined. This seems like a generically good idea to include this header whenever it is available. Remove reference to <types.h>. This was supposedly for MSVC, but there is no actual evidence that it is useful beyond <sys/types.h>. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'nasmlib')
-rw-r--r--nasmlib/file.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/nasmlib/file.c b/nasmlib/file.c
index 57cbc9cd..e525c83a 100644
--- a/nasmlib/file.c
+++ b/nasmlib/file.c
@@ -36,12 +36,6 @@
#include <errno.h>
-#ifdef HAVE_TYPES_H
-# include <types.h>
-#endif
-#ifdef HAVE_SYS_TYPES_H
-# include <sys/types.h>
-#endif
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#endif