summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-09-28 16:22:38 +0000
committerJim Meyering <jim@meyering.net>1999-09-28 16:22:38 +0000
commit98ba27811d41a77233d03fc9a99f677fac1feb29 (patch)
treec9bc707758d916ad89cf5f41a12efafafb4b4f74 /src
parenta66e71a1d28fe66bfe92f0bd5557cb82746a4f59 (diff)
downloadcoreutils-98ba27811d41a77233d03fc9a99f677fac1feb29.tar.xz
Do s/#ifdef HAVE_/#if HAVE_/ -- solely for aesthetics.
Diffstat (limited to 'src')
-rw-r--r--src/sys2.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/sys2.h b/src/sys2.h
index 2082cb60c..d051c48b1 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 <alloca.h>
# 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