aboutsummaryrefslogtreecommitdiffstats
path: root/extcap.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 /extcap.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 'extcap.c')
-rw-r--r--extcap.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/extcap.c b/extcap.c
index f9a24573b6..76ae8b9104 100644
--- a/extcap.c
+++ b/extcap.c
@@ -25,9 +25,7 @@
#include <unistd.h>
#endif
-#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
-#endif
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif