diff options
author | Jim Meyering <jim@meyering.net> | 1996-04-28 21:41:20 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-04-28 21:41:20 +0000 |
commit | 527b07a1ad35d8b6990d8fd7f12e9878ffb4e608 (patch) | |
tree | e64236c3fb28301564d9f91f79b12ad3178768d3 | |
parent | 347c2d6d3039e9a2df6ab033e1d268d8b096ba83 (diff) | |
download | coreutils-527b07a1ad35d8b6990d8fd7f12e9878ffb4e608.tar.xz |
Indent CPP conditionals.
-rw-r--r-- | lib/fileblocks.c | 20 |
1 files 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 <config.h> +# include <config.h> #endif #if !defined (HAVE_ST_BLOCKS) && !defined(_POSIX_VERSION) -#include <sys/types.h> -#include <sys/param.h> +# include <sys/types.h> +# include <sys/param.h> -#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. */ |