reshuffle libbb.h contents so that order of decls makes sense
Found bad typo in largefile support :)
diff --git a/coreutils/mkdir.c b/coreutils/mkdir.c
index 3fe55c3..1aee8b2 100644
--- a/coreutils/mkdir.c
+++ b/coreutils/mkdir.c
@@ -42,7 +42,7 @@
 #endif
 	opt = getopt32(argc, argv, "m:p", &smode);
 	if(opt & 1) {
-			mode = 0777;
+		mode = 0777;
 		if (!bb_parse_mode (smode, &mode)) {
 			bb_error_msg_and_die ("invalid mode `%s'", smode);
 		}