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/procps/ps.c b/procps/ps.c
index 41b8465..13b6ce5 100644
--- a/procps/ps.c
+++ b/procps/ps.c
@@ -192,7 +192,7 @@
 		fprintf(stdout, "\n");
 	}
 	closedir(dir);
-	exit(TRUE);
+	return(TRUE);
 }