1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-09 14:11:29 +00:00

patch from Kris Katterjohn

This commit is contained in:
fyodor
2006-09-26 07:45:50 +00:00
parent f1440dfc89
commit c0d910d08b
4 changed files with 74 additions and 62 deletions

View File

@@ -115,8 +115,13 @@
#include <unistd.h>
#endif
void fatal(char *fmt, ...);
void error(char *fmt, ...);
void pfatal(char *err, ...);
#ifndef __attribute__
#define __attribute__(args)
#endif
void fatal(char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
void error(char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
void pfatal(char *err, ...) __attribute__ ((format (printf, 1, 2)));
#endif /* NMAPFE_ERROR_H */