diff options
-rw-r--r-- | bootstrap.conf | 1 | ||||
m--------- | gnulib | 0 | ||||
-rw-r--r-- | m4/check-decl.m4 | 4 | ||||
-rw-r--r-- | src/system.h | 4 |
4 files changed, 2 insertions, 7 deletions
diff --git a/bootstrap.conf b/bootstrap.conf index e9b198c53..185748936 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -127,6 +127,7 @@ gnulib_modules=" inttostr inttypes isapipe + isblank lchmod lchown lib-ignore diff --git a/gnulib b/gnulib -Subproject 791cc509ac459a2555f8d633ad67455cf8d3fe4 +Subproject f7f4cd99ff9ce8efee94aafdd5980cb4bb1d139 diff --git a/m4/check-decl.m4 b/m4/check-decl.m4 index 530c59e16..0bd7b549a 100644 --- a/m4/check-decl.m4 +++ b/m4/check-decl.m4 @@ -1,4 +1,4 @@ -#serial 25 +#serial 26 # Check declarations for this package. dnl Copyright (C) 1997-2001, 2003-2006, 2008-2009 Free Software @@ -35,8 +35,6 @@ AC_DEFUN([gl_CHECK_DECLS], 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]) diff --git a/src/system.h b/src/system.h index 8de0f3cd2..b4d5e774f 100644 --- a/src/system.h +++ b/src/system.h @@ -212,10 +212,6 @@ enum #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. |