- move #include busybox.h to the very top so we pull in the config
and eventual platform specific includes in early.
diff --git a/miscutils/dc.c b/miscutils/dc.c
index 112f6df..5956b3a 100644
--- a/miscutils/dc.c
+++ b/miscutils/dc.c
@@ -1,11 +1,11 @@
/* vi: set sw=4 ts=4: */
+#include "busybox.h"
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <math.h>
-#include "busybox.h"
/* Tiny RPN calculator, because "expr" didn't give me bitwise operations. */