Updates to a number of apps to remove warnings/compile errors under libc5.
Tested under both libc5 and libc6 and all seems well with these fixes.
 -Erik
diff --git a/find.c b/find.c
index 53b85e6..329d151 100644
--- a/find.c
+++ b/find.c
@@ -116,5 +116,5 @@
 		exit(FALSE);
 	}
 
-	exit(TRUE);
+	return(TRUE);
 }