From: Jim Meyering Date: Sun, 14 Apr 2002 08:14:37 +0000 (+0000) Subject: remove parens in #if directives X-Git-Tag: SH-UTILS-2_0_12~158 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5120cb1bc9380b30fae738d5291b89ea506093dd;p=thirdparty%2Fcoreutils.git remove parens in #if directives --- diff --git a/src/fs.h b/src/fs.h index 4f5c2daf2d..1c420aa9d5 100644 --- a/src/fs.h +++ b/src/fs.h @@ -1,7 +1,7 @@ /* define the magic numbers as given by statfs(2) */ /* please send additions to meskes@debian.org */ -#if defined(__linux__) +#if defined __linux__ # define S_MAGIC_AFFS 0xADFF # define S_MAGIC_EXT 0x137D # define S_MAGIC_EXT2_OLD 0xEF51 @@ -31,6 +31,6 @@ # define S_MAGIC_REISERFS 0x52654973 # define S_MAGIC_CRAMFS 0x28cd3d45 # define S_MAGIC_ROMFS 0x7275 -#elif defined (__GNU__) +#elif defined __GNU__ # include #endif