diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-07-22 08:56:55 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-07-22 08:56:55 +0000 |
commit | fa8cf20631cf02ae3e6b0db95a494261df1aee27 (patch) | |
tree | 9971c6951256dd0bba5ff2a7db08ed6f65ef218d /coreutils/chgrp.c | |
parent | 5658fe5f7869ce987e25dfb6554db5e062045319 (diff) | |
download | busybox-w32-fa8cf20631cf02ae3e6b0db95a494261df1aee27.tar.gz busybox-w32-fa8cf20631cf02ae3e6b0db95a494261df1aee27.tar.bz2 busybox-w32-fa8cf20631cf02ae3e6b0db95a494261df1aee27.zip |
Remove remaining libc5 support code
git-svn-id: svn://busybox.net/trunk/busybox@7090 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/chgrp.c')
-rw-r--r-- | coreutils/chgrp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/chgrp.c b/coreutils/chgrp.c index 78593ae76..2f3fa4197 100644 --- a/coreutils/chgrp.c +++ b/coreutils/chgrp.c | |||
@@ -29,7 +29,7 @@ | |||
29 | #include <unistd.h> | 29 | #include <unistd.h> |
30 | #include "busybox.h" | 30 | #include "busybox.h" |
31 | 31 | ||
32 | /* Don't use lchown for libc5 or glibc older then 2.1.x */ | 32 | /* Don't use lchown glibc older then 2.1.x */ |
33 | #if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1) | 33 | #if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1) |
34 | #define lchown chown | 34 | #define lchown chown |
35 | #endif | 35 | #endif |