1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-27 01:49:03 +00:00

Whew -- big reorganization to allow ethernet sends of IP packets

This commit is contained in:
fyodor
2005-07-19 05:07:51 +00:00
parent 0595d89f96
commit 555c986ac3
29 changed files with 1963 additions and 1362 deletions

View File

@@ -126,13 +126,13 @@
#include <unistd.h>
#endif
void fatal(char *fmt, ...)
void fatal(const char *fmt, ...)
__attribute__ ((format (printf, 1, 2)));
void error(char *fmt, ...)
void error(const char *fmt, ...)
__attribute__ ((format (printf, 1, 2)));
void pfatal(char *err, ...)
void pfatal(const char *err, ...)
__attribute__ ((format (printf, 1, 2)));
void gh_perror(char *err, ...)
void gh_perror(const char *err, ...)
__attribute__ ((format (printf, 1, 2)));
#endif /* NMAP_ERROR_H */