summaryrefslogtreecommitdiff
path: root/src/cat.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-10-07 23:58:29 +0000
committerJim Meyering <jim@meyering.net>1997-10-07 23:58:29 +0000
commit3ea2606e4125cf29694757dea9c4f607043536ce (patch)
treef63bcd6f3d393620874f9763bb34439a42b95fd5 /src/cat.c
parent3f3f5666275c92dedf7a940dd0cba6158a86d325 (diff)
downloadcoreutils-3ea2606e4125cf29694757dea9c4f607043536ce.tar.xz
indent cpp directives to reflect nesting
Diffstat (limited to 'src/cat.c')
-rw-r--r--src/cat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cat.c b/src/cat.c
index 48b2ca9a6..076898695 100644
--- a/src/cat.c
+++ b/src/cat.c
@@ -28,7 +28,7 @@
#include <getopt.h>
#include <sys/types.h>
#ifndef _POSIX_SOURCE
-#include <sys/ioctl.h>
+# include <sys/ioctl.h>
#endif
#include "system.h"
#include "error.h"
@@ -279,9 +279,9 @@ cat (
Irix-5 returns ENOSYS on pipes. */
if (errno == EOPNOTSUPP || errno == ENOTTY
|| errno == EINVAL || errno == ENODEV
-#ifdef ENOSYS
+# ifdef ENOSYS
|| errno == ENOSYS
-#endif
+# endif
)
use_fionread = 0;
else