diff options
author | Jim Meyering <jim@meyering.net> | 2000-05-18 14:56:42 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-05-18 14:56:42 +0000 |
commit | 4d453f56915f3e760aaaa0aa31e4ae8d454da413 (patch) | |
tree | 788347dc72ee72824a7fe04760cb4a110ce6a9f3 /src | |
parent | 9d67112156f374bafc75fbadbe19a5ca77211ff2 (diff) | |
download | coreutils-4d453f56915f3e760aaaa0aa31e4ae8d454da413.tar.xz |
remove some parens from some cpp lines
Diffstat (limited to 'src')
-rw-r--r-- | src/remove.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/remove.c b/src/remove.c index 07723c023..6920cfd92 100644 --- a/src/remove.c +++ b/src/remove.c @@ -65,7 +65,7 @@ int rpl_lstat PARAMS((const char *, struct stat *)); # define D_INO(dp) 1 #endif -#if !defined (S_ISLNK) +#if !defined S_ISLNK # define S_ISLNK(Mode) 0 #endif @@ -356,7 +356,7 @@ fspec_init_dp (struct File_spec *fs, struct dirent *dp) fs->have_filetype_mode = 0; fs->inum = D_INO (dp); -#if D_TYPE_IN_DIRENT && defined (DT_UNKNOWN) && defined (DTTOIF) +#if D_TYPE_IN_DIRENT && defined DT_UNKNOWN && defined DTTOIF if (dp->d_type != DT_UNKNOWN) { fs->have_filetype_mode = 1; |