From: Jim Meyering Date: Mon, 5 Jan 1998 10:06:41 +0000 (+0000) Subject: remove SPECIAL_BITS #ifdefs X-Git-Tag: FILEUTILS-3_16k~44 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8d64a37a777e25cbb7838de3cdd6a6da3abdeb00;p=platform%2Fupstream%2Fcoreutils.git remove SPECIAL_BITS #ifdefs --- diff --git a/src/install.c b/src/install.c index a71d8f3..6607ebc 100644 --- a/src/install.c +++ b/src/install.c @@ -337,20 +337,6 @@ main (int argc, char **argv) exit (errors); } -#ifndef S_ISUID -# define S_ISUID 0 -#endif - -#ifndef S_ISGID -# define S_ISGID 0 -#endif - -#ifndef S_ISVTX -# define S_ISVTX 0 -#endif - -#define SPECIAL_BITS (S_ISUID | S_ISGID | S_ISVTX) - /* Copy file FROM onto file TO, creating any missing parent directories of TO. Return 0 if successful, 1 if an error occurs */