]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(TOLOWER): Remove definition.
authorJim Meyering <jim@meyering.net>
Mon, 3 May 1999 17:55:53 +0000 (17:55 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 3 May 1999 17:55:53 +0000 (17:55 +0000)
src/join.c
src/md5sum.c

index 3603caf42e90a6280e02f61d9bec73d0f8f067b9..e8544fb3a0836b85013c83e45e543524d176e973 100644 (file)
 #include <sys/types.h>
 #include <getopt.h>
 
-#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"
index 592267c70e177e80e8f20e55d257a0e8d057e7fd..dccf9097722be7c9943b03c87317d990ad216f2a 100644 (file)
 # 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.  */