From 685ab869ae55dba682cddabdc0c7136a7236c9cd Mon Sep 17 00:00:00 2001 From: Jouk Date: Wed, 22 Feb 2017 16:49:09 +0100 Subject: [PATCH] OpenVMS does not have stdint.h --- src/stc/scintilla/include/Scintilla.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stc/scintilla/include/Scintilla.h b/src/stc/scintilla/include/Scintilla.h index 6a36d24f4e..8c57520e18 100644 --- a/src/stc/scintilla/include/Scintilla.h +++ b/src/stc/scintilla/include/Scintilla.h @@ -30,6 +30,8 @@ int Scintilla_LinkLexers(void); #if defined(_MSC_VER) // Older releases of MSVC did not have stdint.h. #include +#elif defined( __VMS ) +#include #else #include #endif