* bootstrap.conf (gnulib_modules): Add isblank.
* src/system.h (isblank): Don't define.
* m4/check-decl.m4: Don't check for isblank declaration.
* gnulib: Update submodule to latest.
inttostr
inttypes
isapipe
+ isblank
lchmod
lchown
lib-ignore
-Subproject commit 791cc509ac459a2555f8d633ad67455cf8d3fe4d
+Subproject commit f7f4cd99ff9ce8efee94aafdd5980cb4bb1d1395
-#serial 25
+#serial 26
# Check declarations for this package.
dnl Copyright (C) 1997-2001, 2003-2006, 2008-2009 Free Software
getpwuid,
ttyname], , , $headers)
- AC_CHECK_DECLS([isblank], [], [], [#include <ctype.h>])
-
AC_CHECK_DECLS_ONCE([geteuid])
AC_CHECK_DECLS_ONCE([getlogin])
AC_CHECK_DECLS_ONCE([getuid])
#include <ctype.h>
-#if ! (defined isblank || HAVE_DECL_ISBLANK)
-# define isblank(c) ((c) == ' ' || (c) == '\t')
-#endif
-
/* ISDIGIT differs from isdigit, as follows:
- Its arg may be any int or unsigned int; it need not be an unsigned char
or EOF.