aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-05-16 12:51:45 -0700
committerGuy Harris <guy@alum.mit.edu>2018-05-16 22:03:09 +0000
commitd08d0a87c5dd20d8626649693a81279415f47c22 (patch)
tree6567c4c87cd8ae706cf6b9d3b1bb570fe37bf4f9 /file.c
parent054a7e4606758ebdc8b37cab04da57e5a863cba8 (diff)
Eliminate some unneeded header checks.
sys/stat.h and sys/types.h date back to V7 UNIX, so they should be present on all UN*Xes, and we're assuming they're available on Windows, so, unless and until we ever support platforms that are neither UN*Xes nor Windows, we don't need to check for them. Remove the CMake checks for them, remove the HAVE_ values from cmakeconfig.h.in, and remove all tests for the HAVE_ values. Change-Id: I90bb2aab37958553673b03b52f4931d3b304b9d0 Reviewed-on: https://code.wireshark.org/review/27603 Petri-Dish: Guy Harris <guy@alum.mit.edu> Tested-by: Petri Dish Buildbot Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'file.c')
-rw-r--r--file.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/file.c b/file.c
index c9b9878f81..3e391cf6e0 100644
--- a/file.c
+++ b/file.c
@@ -54,9 +54,7 @@
#include "ui/ws_ui_util.h"
/* Needed for addrinfo */
-#ifdef HAVE_SYS_TYPES_H
-# include <sys/types.h>
-#endif
+#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>