1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-28 02:19:04 +00:00

Add needed header checks, clean up unused ones. See #1887

This commit is contained in:
dmiller
2020-01-12 06:09:37 +00:00
parent ae10c8a19d
commit 30110f911e
8 changed files with 9 additions and 45 deletions

View File

@@ -134,7 +134,13 @@
#include "nmap_error.h"
#include "NmapOps.h"
#include <sys/types.h>
#if HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#if HAVE_FCNTL_H
#include <fcntl.h>
#endif
#include <errno.h>
extern NmapOps o;