summaryrefslogtreecommitdiff
path: root/m4/wint_t.m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2020-05-09 10:33:45 +0200
committerBruno Haible <bruno@clisp.org>2020-05-09 10:33:45 +0200
commit2bbe201944c2e65a49e71c6d3d3bfefb0049e899 (patch)
tree9b40c039dccf88ee8f3c95c67c337d204954ed42 /m4/wint_t.m4
parentc8eb1af611279eaebff505dbfe176885ca3b0fdc (diff)
downloadgnulib-2bbe201944c2e65a49e71c6d3d3bfefb0049e899.tar.gz
Macro tweaks.
* m4/c32rtomb.m4 (gl_FUNC_C32RTOMB): Correct config.h comment. * m4/wint_t.m4 (gt_TYPE_WINT_T): Correct indentation.
Diffstat (limited to 'm4/wint_t.m4')
-rw-r--r--m4/wint_t.m412
1 files changed, 6 insertions, 6 deletions
diff --git a/m4/wint_t.m4 b/m4/wint_t.m4
index 877fd86c7e..5e6c1780a2 100644
--- a/m4/wint_t.m4
+++ b/m4/wint_t.m4
@@ -1,4 +1,4 @@
-# wint_t.m4 serial 7
+# wint_t.m4 serial 8
dnl Copyright (C) 2003, 2007-2020 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -35,7 +35,7 @@ AC_DEFUN([gt_TYPE_WINT_T],
AC_CACHE_CHECK([whether wint_t is too small],
[gl_cv_type_wint_t_too_small],
[AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM([[
+ [AC_LANG_PROGRAM([[
/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
<wchar.h>.
BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
@@ -46,10 +46,10 @@ AC_DEFUN([gt_TYPE_WINT_T],
# include <time.h>
#endif
#include <wchar.h>
- int verify[sizeof (wint_t) < sizeof (int) ? -1 : 1];
- ]])],
- [gl_cv_type_wint_t_too_small=no],
- [gl_cv_type_wint_t_too_small=yes])])
+ int verify[sizeof (wint_t) < sizeof (int) ? -1 : 1];
+ ]])],
+ [gl_cv_type_wint_t_too_small=no],
+ [gl_cv_type_wint_t_too_small=yes])])
if test $gl_cv_type_wint_t_too_small = yes; then
GNULIB_OVERRIDES_WINT_T=1
else