Moved some #ifdefs down below #include "busybox.h" where they belong.
[oweals/busybox.git] / chown.c
diff --git a/chown.c b/chown.c
index f044a752732aa01deee35131f64dc148f9869602..b6059d048286a0f3ac7ae54059177b4568dd0da9 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)