From: Jim Meyering Date: Thu, 18 May 2000 14:56:42 +0000 (+0000) Subject: remove some parens from some cpp lines X-Git-Tag: FILEUTILS-4_0s~29 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=4d453f56915f3e760aaaa0aa31e4ae8d454da413;p=thirdparty%2Fcoreutils.git remove some parens from some cpp lines --- diff --git a/src/remove.c b/src/remove.c index 07723c023b..6920cfd923 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;