From 8fbc54e86d6824d7369aef0e29880e32d6e7a254 Mon Sep 17 00:00:00 2001 From: david Date: Sat, 9 Feb 2013 22:46:47 +0000 Subject: [PATCH] Use a HAVE_STDINT_H guard. This include file isn't present when building with Visual C++ 2008, but the file compiles without it. --- nse_utility.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nse_utility.h b/nse_utility.h index 66567a02b..7f2e4e4bd 100644 --- a/nse_utility.h +++ b/nse_utility.h @@ -3,7 +3,9 @@ #include "portlist.h" +#if HAVE_STDINT_H #include +#endif /* int nseU_traceback (lua_State *L) *