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/coreutils/uudecode.c b/coreutils/uudecode.c
index 4216e33..752497c 100644
--- a/coreutils/uudecode.c
+++ b/coreutils/uudecode.c
@@ -346,5 +346,5 @@
     }
     while (optind < argc);
   }
-  exit(exit_status);
+  return(exit_status);
 }