Shutdown sending on the socket when stdin closes.
[oweals/busybox.git] / reset.c
diff --git a/reset.c b/reset.c
index 6c4ae35ae1f997fa4574ff348e0f686201b3fbdd..bf8c3ed45e71ac490582e0c4f8fe0b02e8ed4eb0 100644 (file)
--- a/reset.c
+++ b/reset.c
  *
  */
 
-#include "internal.h"
+#include "busybox.h"
 #include <stdio.h>
 
 extern int reset_main(int argc, char **argv)
 {
        printf("\033c");
-       return(TRUE);
+       return EXIT_SUCCESS;
 }