summaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-07-22 08:56:55 +0000
committerEric Andersen <andersen@codepoet.org>2003-07-22 08:56:55 +0000
commit85e5e72bc1acd9d58c11bde6e14c8270cd9f169f (patch)
tree9971c6951256dd0bba5ff2a7db08ed6f65ef218d /coreutils
parent0a14c9f924eaf6a64e78959a190d187d646b3c0c (diff)
downloadbusybox-w32-85e5e72bc1acd9d58c11bde6e14c8270cd9f169f.tar.gz
busybox-w32-85e5e72bc1acd9d58c11bde6e14c8270cd9f169f.tar.bz2
busybox-w32-85e5e72bc1acd9d58c11bde6e14c8270cd9f169f.zip
Remove remaining libc5 support code
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/chgrp.c2
-rw-r--r--coreutils/chown.c2
2 files changed, 2 insertions, 2 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
diff --git a/coreutils/chown.c b/coreutils/chown.c
index 5b1b89e79..7b9ea9175 100644
--- a/coreutils/chown.c
+++ b/coreutils/chown.c
@@ -30,7 +30,7 @@
30#include <string.h> 30#include <string.h>
31#include "busybox.h" 31#include "busybox.h"
32 32
33/* Don't use lchown for libc5 or glibc older then 2.1.x */ 33/* Don't use lchown for glibc older then 2.1.x */
34#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1) 34#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)
35#define lchown chown 35#define lchown chown
36#endif 36#endif