summaryrefslogtreecommitdiff
path: root/src/install.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-01-05 10:06:41 +0000
committerJim Meyering <jim@meyering.net>1998-01-05 10:06:41 +0000
commit8d64a37a777e25cbb7838de3cdd6a6da3abdeb00 (patch)
treef02ee3fbb4e8995fb54b82de824b92de9613619a /src/install.c
parent0520188821b9102f60e9ee540ecb77e46cf1f74c (diff)
downloadcoreutils-8d64a37a777e25cbb7838de3cdd6a6da3abdeb00.tar.xz
remove SPECIAL_BITS #ifdefs
Diffstat (limited to 'src/install.c')
-rw-r--r--src/install.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/install.c b/src/install.c
index a71d8f3ec..6607ebcc9 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 */