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

@@ -120,7 +120,10 @@
* *
***************************************************************************/
/* $Id: nmap.h 6676 2008-01-12 22:39:34Z fyodor $ */
/* $Id$ */
#ifndef NMAP_TRACEROUTE_H
#define NMAP_TRACEROUTE_H
#include "Target.h"
@@ -130,3 +133,4 @@ int traceroute(std::vector<Target *> &Targets);
void traceroute_hop_cache_clear();
#endif