Wrap a table (bg set to black, width=80%) around the screenshot
[oweals/busybox.git] / tail.c
diff --git a/tail.c b/tail.c
index 8e6488931c8f0994019977ce4dcfa15b446f031f..40511aa7bbf3663dff4a90b4864cee8181470f32 100644 (file)
--- a/tail.c
+++ b/tail.c
 
 #include "busybox.h"
 
-#include <sys/types.h>
 #include <fcntl.h>
+#include <getopt.h>
+#include <string.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <sys/types.h>
 
 static struct suffix_mult tail_suffixes[] = {
        { "b", 512 },
@@ -39,8 +43,8 @@ static struct suffix_mult null_suffixes[] = {
 };
 #endif
 
-#define BYTES 0
-#define LINES 1
+static const int BYTES = 0;
+static const int LINES = 1;
 
 static char *tailbuf;
 static int taillen;