summaryrefslogtreecommitdiffstats
path: root/include/iprt
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-16 22:55:52 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-16 22:55:52 +0000
commitcd47c2446f1a9dee96610f298989848f8986a8be (patch)
tree02c30d62a9164987d0aaba2f72c58a50053205d6 /include/iprt
parentReleasing progress-linux version 7.0.14-dfsg-4~progress7.99u1. (diff)
downloadvirtualbox-cd47c2446f1a9dee96610f298989848f8986a8be.tar.xz
virtualbox-cd47c2446f1a9dee96610f298989848f8986a8be.zip
Merging upstream version 7.0.16-dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'include/iprt')
-rw-r--r--include/iprt/cdefs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/iprt/cdefs.h b/include/iprt/cdefs.h
index 04d3799b..0c041af3 100644
--- a/include/iprt/cdefs.h
+++ b/include/iprt/cdefs.h
@@ -2972,11 +2972,11 @@
# pragma warning(disable:4815) /* -wd4815 does not work with VS2019 */
# endif
#elif defined(__STDC_VERSION__)
-# if __STDC_VERSION__ >= 1999901L
+# if __STDC_VERSION__ >= 199901L
# define RT_FLEXIBLE_ARRAY
-# else
+# else /* __STDC_VERSION__ < 199901L */
# define RT_FLEXIBLE_ARRAY 1
-# endif
+# endif /* __STDC_VERSION__ < 199901L */
#else
# define RT_FLEXIBLE_ARRAY 1
#endif