From: Jim Meyering Date: Fri, 14 Apr 2000 12:41:05 +0000 (+0000) Subject: Shorten `#ifdef HAVE_...' to `#if HAVE_...' and X-Git-Tag: FILEUTILS-4_0r~68 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2e469b088b7c0ff041b59261b349b798b0bd34e5;p=thirdparty%2Fcoreutils.git Shorten `#ifdef HAVE_...' to `#if HAVE_...' and remove unnecessary uses of `defined' (aesthetics). --- diff --git a/src/seq.c b/src/seq.c index 665461d589..c8242e0309 100644 --- a/src/seq.c +++ b/src/seq.c @@ -226,7 +226,7 @@ the increment must be positive")); return 0; } -#if defined (HAVE_RINT) && defined (HAVE_MODF) && defined (HAVE_FLOOR) +#if HAVE_RINT && HAVE_MODF && HAVE_FLOOR /* Return a printf-style format string with which all selected numbers will format to strings of the same width. */ @@ -344,7 +344,7 @@ main (int argc, char **argv) step_is_set = 0; /* Figure out the locale's idea of a decimal point. */ -#ifdef HAVE_LOCALECONV +#if HAVE_LOCALECONV { struct lconv *locale;