summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-02-26 21:28:10 +0000
committerJim Meyering <jim@meyering.net>2000-02-26 21:28:10 +0000
commit20552b01beab0485184ff6f8f6e4b39e47e9cd57 (patch)
treebfe5d24b8b230a38482fcc87c2fb9da6d95738e4 /m4
parent1b136ab2e9c7025397345021f5e1213c07dca169 (diff)
downloadcoreutils-20552b01beab0485184ff6f8f6e4b39e47e9cd57.tar.xz
whoops. Add commas in parenthesized list of functions in call
to AC_CHECK_DECLS.
Diffstat (limited to 'm4')
-rw-r--r--m4/check-decl.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/check-decl.m4 b/m4/check-decl.m4
index f07d11180..544f15d66 100644
--- a/m4/check-decl.m4
+++ b/m4/check-decl.m4
@@ -39,9 +39,9 @@ AC_DEFUN(jm_CHECK_DECLS,
#endif
'
- AC_CHECK_DECLS(
- (free lseek malloc memchr nanosleep realloc stpcpy strstr strtoul strtoull),
- , , $headers)
+ AC_CHECK_DECLS((free, lseek, malloc, memchr, nanosleep,
+ realloc, stpcpy, strstr, strtoul, strtoull),
+ , , $headers)
])
dnl FIXME: when autoconf has support for it.