1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Add ifndef guards to prevent double-inclusion of headers

This commit is contained in:
dmiller
2014-12-23 13:48:22 +00:00
parent c95d656bfc
commit 8b487166ca
15 changed files with 66 additions and 1 deletions

View File

@@ -123,6 +123,9 @@
/* $Id$ */
#ifndef NMAP_OPS_H
#define NMAP_OPS_H
#include "nmap.h"
#include "global_structures.h"
#include "output.h"
@@ -425,3 +428,4 @@ class NmapOps {
bool spoof_mac_set;
};
#endif