changeset 3309:587678ee45b7

(jm_FUNC_MBRTOWC): Use `#include', not `@%:@include', as it was in the original. Reported by Paul Eggert.
author Jim Meyering <jim@meyering.net>
date Fri, 03 Aug 2001 10:09:06 +0000
parents 9067b76176e2
children ca90212aac5d
files m4/mbrtowc.m4
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/m4/mbrtowc.m4
+++ b/m4/mbrtowc.m4
@@ -1,4 +1,4 @@
-#serial 2
+#serial 3
 
 dnl From Paul Eggert
 
@@ -7,7 +7,7 @@
   AC_CACHE_CHECK([whether mbrtowc and mbstate_t are properly declared],
     jm_cv_func_mbrtowc,
     [AC_TRY_LINK(
-       [@%:@include <wchar.h>],
+       [#include <wchar.h>],
        [mbstate_t state; return ! (sizeof state && mbrtowc);],
        jm_cv_func_mbrtowc=yes,
        jm_cv_func_mbrtowc=no)])