1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-25 08:59:01 +00:00

Fix a compiler error on VS2013

This commit is contained in:
dmiller
2014-11-11 18:56:05 +00:00
parent 7797826e5d
commit 680dd540eb

View File

@@ -66,7 +66,11 @@
#define strdup _strdup
#endif
#ifndef __cplusplus
/* C++ has the inline keyword.
* Additionally, C++11 forbids redefining a keyword as a macro */
#define inline __inline
#endif
#ifdef __MINGW32__
#include <stdint.h>