Changed bb_regcomp to xregcomp and #if 0'ed out destroy_cmd_strs in sed.c
[oweals/busybox.git] / clear.c
diff --git a/clear.c b/clear.c
index 899840a8a5d66a93b4bd389a3988dd8279fcc276..dba10569190b554d2752a0528c9f3a1423ab48a3 100644 (file)
--- a/clear.c
+++ b/clear.c
@@ -3,7 +3,7 @@
  * Mini clear implementation for busybox
  *
  *
- * Copyright (C) 1999 by Lineo, inc.
+ * Copyright (C) 1999,2000 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
@@ -29,5 +29,5 @@
 extern int clear_main(int argc, char **argv)
 {
        printf("\033[H\033[J");
-       exit(TRUE);
+       return(TRUE);
 }