libbb.h now includes ../busybox.h. This way, files in libbb that have
[oweals/busybox.git] / chown.c
diff --git a/chown.c b/chown.c
index f044a752732aa01deee35131f64dc148f9869602..ff935a4c056302c7f9415b8f72524facff73bcf3 100644 (file)
--- a/chown.c
+++ b/chown.c
 #include <string.h>
 #include <unistd.h>
 #include "busybox.h"
-#define BB_DECLARE_EXTERN
-#define bb_need_too_few_args
-#include "messages.c"
-
 
 /* Don't use lchown for libc5 or glibc older then 2.1.x */
-#if (__GLIBC__ < 2) && (__GLIBC_MINOR__ < 1)
+#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)
 #define lchown chown
 #endif