Wrap a table (bg set to black, width=80%) around the screenshot
[oweals/busybox.git] / printf.c
index 94b809348d753d3c84d2baaba0c160b57db1aeb1..72bc7ae89e65eab41dc5be9149d11d1beb567037 100644 (file)
--- a/printf.c
+++ b/printf.c
@@ -47,7 +47,7 @@
 
 //   19990508 Busy Boxed! Dave Cinege
 
-#include "internal.h"
+#include "busybox.h"
 #include <unistd.h>
 #include <stdio.h>
 #include <sys/types.h>
@@ -59,7 +59,7 @@
 
 
 #ifndef S_IFMT
-# define S_IFMT 0170000
+static const int S_IFMT = 0170000;
 #endif
 #if !defined(S_ISBLK) && defined(S_IFBLK)
 # define       S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)