Moved some #ifdefs down below #include "busybox.h" where they belong.
[oweals/busybox.git] / chgrp.c
diff --git a/chgrp.c b/chgrp.c
index 739d09fb66ce8cccc8b88e885f5a4baf0172a9e1..c6312a7e496cff4a0d60f4a22b6ea9eabb303b6a 100644 (file)
--- a/chgrp.c
+++ b/chgrp.c
 #include <string.h>
 #include <unistd.h>
 #include "busybox.h"
-#define BB_DECLARE_EXTERN
-#define bb_need_invalid_option
-#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)