From 1cc1ddeefb02c9fb0a5523d45dddc1d9cd9f8d95 Mon Sep 17 00:00:00 2001 From: Jouk Date: Thu, 24 Jun 2021 09:01:21 +0200 Subject: [PATCH] Fix for OpenVMS CRTL version 8.5 --- setup.h_vms | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.h_vms b/setup.h_vms index 65564d1493..3156ba8e3f 100644 --- a/setup.h_vms +++ b/setup.h_vms @@ -3,7 +3,7 @@ * Template for the set.h file for VMS * * Created from setup.h_in * * Author : J.Jansen (joukj@hrem.nano.tudelft.nl) * - * Date : 28 January 2021 * + * Date : 24 June 2024 * * * *****************************************************************************/ @@ -1457,8 +1457,10 @@ typedef pid_t GPid; #include #include +#if __CRTL_VER <= 80400000 #define LLONG_MIN __INT64_MIN #define LLONG_MAX __INT64_MAX #define ULLONG_MAX __UINT64_MAX +#endif #endif /* __WX_SETUP_H__ */