Browse code

pdf.c - conditionally including stdint.h to allow compilation on windows

Mickey Sola authored on 2017/04/01 01:11:31
Showing 1 changed files
... ...
@@ -48,6 +48,10 @@
48 48
 #include <iconv.h>
49 49
 #endif
50 50
 
51
+#ifdef _WIN32
52
+#include <stdint.h>
53
+#endif
54
+
51 55
 #include "clamav.h"
52 56
 #include "others.h"
53 57
 #include "pdf.h"