summaryrefslogtreecommitdiff
path: root/src/system.h
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-10-19 07:55:42 +0200
committerJim Meyering <meyering@redhat.com>2009-10-19 07:57:15 +0200
commit6ac6c7e4b77898d6d82d5565b5d8b053ecacbc64 (patch)
tree2edf3aab6dc24539926575225deadcf02b3a3138 /src/system.h
parentf26508204bf5a51a83af294114f47e7b6c82c958 (diff)
downloadcoreutils-6ac6c7e4b77898d6d82d5565b5d8b053ecacbc64.tar.xz
build: use gnulib's isblank module
* 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.
Diffstat (limited to 'src/system.h')
-rw-r--r--src/system.h4
1 files changed, 0 insertions, 4 deletions
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.