OpenVMS does not have stdint.h

This commit is contained in:
Jouk 2017-02-22 16:49:09 +01:00
parent ce08759b3b
commit 685ab869ae

View File

@ -30,6 +30,8 @@ int Scintilla_LinkLexers(void);
#if defined(_MSC_VER)
// Older releases of MSVC did not have stdint.h.
#include <stddef.h>
#elif defined( __VMS )
#include <inttypes.h>
#else
#include <stdint.h>
#endif