diff options
author | Jim Meyering <jim@meyering.net> | 2002-04-14 08:14:37 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-04-14 08:14:37 +0000 |
commit | 5120cb1bc9380b30fae738d5291b89ea506093dd (patch) | |
tree | f3bf683641836ed8385b204578dc341b708293f8 | |
parent | e407204f28406dd14c0937d077d382c7fc536c6e (diff) | |
download | coreutils-5120cb1bc9380b30fae738d5291b89ea506093dd.tar.xz |
remove parens in #if directives
-rw-r--r-- | src/fs.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 <hurd/hurd_types.h> #endif |