summaryrefslogtreecommitdiff
path: root/lib/save-cwd.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-03-15 11:09:10 +0000
committerJim Meyering <jim@meyering.net>1998-03-15 11:09:10 +0000
commitbfbc3ce20cdcfd00c27922c2e78cbff43846fe0d (patch)
tree2045f8cb784dbc4f5cb1cbaf83e0d0b05f7277e2 /lib/save-cwd.c
parent0f5f23cb9eac6ee05f0571277298881b91939540 (diff)
downloadcoreutils-bfbc3ce20cdcfd00c27922c2e78cbff43846fe0d.tar.xz
Use #if, not #ifdef with HAVE_ macros
Diffstat (limited to 'lib/save-cwd.c')
-rw-r--r--lib/save-cwd.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/save-cwd.c b/lib/save-cwd.c
index 31b46ce48..40bd70b0d 100644
--- a/lib/save-cwd.c
+++ b/lib/save-cwd.c
@@ -1,5 +1,5 @@
/* save-cwd.c -- Save and restore current working directory.
- Copyright (C) 1995, 1997 Free Software Foundation, Inc.
+ Copyright (C) 1995, 1997, 1998 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -17,7 +17,7 @@
/* Written by Jim Meyering <meyering@na-net.ornl.gov>. */
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
# include "config.h"
#endif
@@ -27,11 +27,11 @@
# include <stdlib.h>
#endif
-#ifdef HAVE_UNISTD_H
+#if HAVE_UNISTD_H
# include <unistd.h>
#endif
-#ifdef HAVE_FCNTL_H
+#if HAVE_FCNTL_H
# include <fcntl.h>
#else
# include <sys/file.h>
@@ -67,7 +67,7 @@ save_cwd (cwd)
if (have_working_fchdir)
{
-#ifdef HAVE_FCHDIR
+#if HAVE_FCHDIR
cwd->desc = open (".", O_RDONLY);
if (cwd->desc < 0)
{