From 044077237d1ebdf19e024b9ff7fe3ca984022d23 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 28 Apr 1996 21:41:20 +0000 Subject: [PATCH] Indent CPP conditionals. --- lib/fileblocks.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/fileblocks.c b/lib/fileblocks.c index 31425c162..fc9a8eb00 100644 --- a/lib/fileblocks.c +++ b/lib/fileblocks.c @@ -18,26 +18,26 @@ /* Written by Brian L. Matthews, blm@6sceng.UUCP. */ #ifdef HAVE_CONFIG_H -#include +# include #endif #if !defined (HAVE_ST_BLOCKS) && !defined(_POSIX_VERSION) -#include -#include +# include +# include -#ifndef NINDIR +# ifndef NINDIR /* Some SysV's, like Irix, seem to lack these. Hope they're correct. */ /* Size of a indirect block, in bytes. */ -#ifndef BSIZE -#define BSIZE 1024 -#endif +# ifndef BSIZE +# define BSIZE 1024 +# endif /* Number of inode pointers per indirect block. */ -#define NINDIR (BSIZE/sizeof(daddr_t)) -#endif /* !NINDIR */ +# define NINDIR (BSIZE/sizeof(daddr_t)) +# endif /* !NINDIR */ /* Number of direct block addresses in an inode. */ -#define NDIR 10 +# define NDIR 10 /* Return the number of 512-byte blocks in a file of SIZE bytes. */ -- 2.11.0