From 8840759c6147277a1e8b1c2a315e42daf4e0b794 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 20 Jul 2006 19:31:07 +0000 Subject: move lchown/chown define out of specific files and into platform.h where it belongs --- coreutils/chgrp.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'coreutils/chgrp.c') diff --git a/coreutils/chgrp.c b/coreutils/chgrp.c index 46db4081a..5064f2d6e 100644 --- a/coreutils/chgrp.c +++ b/coreutils/chgrp.c @@ -16,11 +16,6 @@ #include #include "busybox.h" -/* Don't use lchown glibc older then 2.1.x */ -#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1) -#define lchown chown -#endif - static int fileAction(const char *fileName, struct stat *statbuf, void* junk) { if (lchown(fileName, statbuf->st_uid, *((long *) junk)) == 0) { -- cgit v1.2.3