diff options
author | Jim Meyering <jim@meyering.net> | 2001-08-03 10:09:06 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-08-03 10:09:06 +0000 |
commit | e34a8a508472426569f698aca22e27eacbe26c7d (patch) | |
tree | 6af4731e14e8184182697e83194226c3b892c4cf /m4 | |
parent | 472b34493d6c790652e82c98d632df04789d0f5c (diff) | |
download | coreutils-e34a8a508472426569f698aca22e27eacbe26c7d.tar.xz |
(jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
as it was in the original. Reported by Paul Eggert.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/mbrtowc.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/mbrtowc.m4 b/m4/mbrtowc.m4 index 3085fc3c3..fca91a5f8 100644 --- 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_DEFUN(jm_FUNC_MBRTOWC, 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)]) |