Fixed a memory leak in lash. It seems that close_all was calling close()
[oweals/busybox.git] / tail.c
diff --git a/tail.c b/tail.c
index 778c2d18b87396f5553eb6ea9b476b3a0b4d1539..a85256c807dce801c0f2d04e634f22cec9f312e2 100644 (file)
--- a/tail.c
+++ b/tail.c
@@ -21,7 +21,6 @@
  *
  */
 
-#include "busybox.h"
 
 #include <fcntl.h>
 #include <getopt.h>
@@ -29,6 +28,7 @@
 #include <stdlib.h>
 #include <unistd.h>
 #include <sys/types.h>
+#include "busybox.h"
 
 static const struct suffix_mult tail_suffixes[] = {
        { "b", 512 },