* m4/stdint.m4 (gl_STDINT_H): Copy condition from lib/stdbit.in.h.
+2024-12-20 Bruno Haible <bruno@clisp.org>
+
+ stdint: Detect MSVC __typeof__ support.
+ * m4/stdint.m4 (gl_STDINT_H): Copy condition from lib/stdbit.in.h.
+
2024-12-19 Collin Funk <collin.funk1@gmail.com>
intprops: Detect MSVC __typeof__ support.
# stdint.m4
-# serial 63
+# serial 64
dnl Copyright (C) 2001-2024 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
|| defined __clang__)
int k = _Generic (SIZE_MAX, size_t: 0);
#elif (2 <= __GNUC__ || 4 <= __clang_major__ || defined __IBM__TYPEOF__ \
- || (0x5110 <= __SUNPRO_C && !__STDC__))
+ || (0x5110 <= __SUNPRO_C && !__STDC__) || 1939 <= _MSC_VER)
extern size_t k;
extern __typeof__ (SIZE_MAX) k;
#endif