From: Jim Meyering Date: Tue, 28 Sep 1999 16:22:38 +0000 (+0000) Subject: Do s/#ifdef HAVE_/#if HAVE_/ -- solely for aesthetics. X-Git-Tag: FILEUTILS-4_0j-trial~199 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=98ba27811d41a77233d03fc9a99f677fac1feb29;p=thirdparty%2Fcoreutils.git Do s/#ifdef HAVE_/#if HAVE_/ -- solely for aesthetics. --- diff --git a/src/sys2.h b/src/sys2.h index 2082cb60c7..d051c48b13 100644 --- a/src/sys2.h +++ b/src/sys2.h @@ -8,7 +8,7 @@ #endif #ifndef __GNUC__ -# ifdef HAVE_ALLOCA_H +# if HAVE_ALLOCA_H # include # else # ifdef _AIX @@ -177,57 +177,57 @@ off_t lseek (); are more efficient but not thread-safe. That they're not thread-safe is fine since all these applications are single threaded. */ -#ifdef HAVE_CLEARERR_UNLOCKED +#if HAVE_CLEARERR_UNLOCKED # undef clearerr # define clearerr(S) clearerr_unlocked (S) #endif -#ifdef HAVE_FEOF_UNLOCKED +#if HAVE_FEOF_UNLOCKED # undef feof # define feof(S) feof_unlocked (S) #endif -#ifdef HAVE_FERROR_UNLOCKED +#if HAVE_FERROR_UNLOCKED # undef ferror # define ferror(S) ferror_unlocked (S) #endif -#ifdef HAVE_FFLUSH_UNLOCKED +#if HAVE_FFLUSH_UNLOCKED # undef fflush # define fflush(S) fflush_unlocked (S) #endif -#ifdef HAVE_FPUTC_UNLOCKED +#if HAVE_FPUTC_UNLOCKED # undef fputc # define fputc(C, S) fputc_unlocked (C, S) #endif -#ifdef HAVE_FREAD_UNLOCKED +#if HAVE_FREAD_UNLOCKED # undef fread # define fread(P, Z, N, S) fread_unlocked (P, Z, N, S) #endif -#ifdef HAVE_FWRITE_UNLOCKED +#if HAVE_FWRITE_UNLOCKED # undef fwrite # define fwrite(P, Z, N, S) fwrite_unlocked (P, Z, N, S) #endif -#ifdef HAVE_GETC_UNLOCKED +#if HAVE_GETC_UNLOCKED # undef getc # define getc(S) getc_unlocked (S) #endif -#ifdef HAVE_GETCHAR_UNLOCKED +#if HAVE_GETCHAR_UNLOCKED # undef getchar # define getchar(S) getchar_unlocked (S) #endif -#ifdef HAVE_PUTC_UNLOCKED +#if HAVE_PUTC_UNLOCKED # undef putc # define putc(C, S) putc_unlocked (C, S) #endif -#ifdef HAVE_PUTCHAR_UNLOCKED +#if HAVE_PUTCHAR_UNLOCKED # undef putchar # define putchar(C) putchar_unlocked (C) #endif