aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libbb/appletlib.c2
-rw-r--r--shell/hush.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c
index 0ebea4f44..b31532a93 100644
--- a/libbb/appletlib.c
+++ b/libbb/appletlib.c
@@ -27,10 +27,10 @@
27 * FEATURE_INSTALLER or FEATURE_SUID will still link printf routines in. :( 27 * FEATURE_INSTALLER or FEATURE_SUID will still link printf routines in. :(
28 */ 28 */
29 29
30#include "busybox.h"
30#include <assert.h> 31#include <assert.h>
31#include <malloc.h> 32#include <malloc.h>
32#include <sys/user.h> /* PAGE_SIZE */ 33#include <sys/user.h> /* PAGE_SIZE */
33#include "busybox.h"
34 34
35 35
36/* Declare <applet>_main() */ 36/* Declare <applet>_main() */
diff --git a/shell/hush.c b/shell/hush.c
index 5edcdb844..1187cbe8f 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -454,9 +454,9 @@ struct function {
454 char *name; 454 char *name;
455 struct command *parent_cmd; 455 struct command *parent_cmd;
456 struct pipe *body; 456 struct pipe *body;
457#if !BB_MMU 457# if !BB_MMU
458 char *body_as_string; 458 char *body_as_string;
459#endif 459# endif
460}; 460};
461#endif 461#endif
462 462