Skip headers with empty filenames, rather than stopping.
[oweals/busybox.git] / reset.c
diff --git a/reset.c b/reset.c
index 8e2c491e2a8aad1a184f9a792fc42a230fb6c8ef..755c4c335d95deb58a3522581369a418f0380b84 100644 (file)
--- a/reset.c
+++ b/reset.c
@@ -3,7 +3,7 @@
  * Mini reset implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *        and Kent Robotti <robotti@metconnect.com>
  *
  *
  */
 
-#include "busybox.h"
 #include <stdio.h>
+#include <stdlib.h>
+#include "busybox.h"
 
 extern int reset_main(int argc, char **argv)
 {
        printf("\033c");
-       return(TRUE);
+       return EXIT_SUCCESS;
 }