Wrap a table (bg set to black, width=80%) around the screenshot
[oweals/busybox.git] / printf.c
index 6a87fc319902afbddfaf16118c6a6235e77bb076..72bc7ae89e65eab41dc5be9149d11d1beb567037 100644 (file)
--- a/printf.c
+++ b/printf.c
 
 //   19990508 Busy Boxed! Dave Cinege
 
-#include "internal.h"
+#include "busybox.h"
 #include <unistd.h>
 #include <stdio.h>
 #include <sys/types.h>
-#include <sys/stat.h>
 #include <string.h>
 #include <errno.h>
 #include <stdlib.h>
@@ -60,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)