From: Jim Meyering Date: Mon, 3 May 1999 17:55:53 +0000 (+0000) Subject: (TOLOWER): Remove definition. X-Git-Tag: TEXTUTILS-1_22k~45 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e060631c35c85acecf1884c24560066c20fc4c97;p=thirdparty%2Fcoreutils.git (TOLOWER): Remove definition. --- diff --git a/src/join.c b/src/join.c index 3603caf42e..e8544fb3a0 100644 --- a/src/join.c +++ b/src/join.c @@ -24,12 +24,6 @@ #include #include -#if _LIBC || STDC_HEADERS -# define TOLOWER(c) tolower (c) -#else -# define TOLOWER(c) (ISUPPER (c) ? tolower (c) : (c)) -#endif - #include "system.h" #include "error.h" #include "memcasecmp.h" diff --git a/src/md5sum.c b/src/md5sum.c index 592267c70e..dccf909772 100644 --- a/src/md5sum.c +++ b/src/md5sum.c @@ -59,12 +59,6 @@ # endif #endif -#if _LIBC || STDC_HEADERS -# define TOLOWER(c) tolower (c) -#else -# define TOLOWER(c) (ISUPPER (c) ? tolower (c) : (c)) -#endif - /* The minimum length of a valid digest line in a file produced by `md5sum FILE' and read by `md5sum --check'. This length does not include any newline character at the end of a line. */