Major coreutils update.

This commit is contained in:
Manuel Novoa III
2003-03-19 09:13:01 +00:00
parent e01f9662a5
commit cad5364599
295 changed files with 6944 additions and 5570 deletions

View File

@@ -20,24 +20,18 @@
*
*/
/* getopt not needed */
#include <stdio.h>
#include <dirent.h>
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include "busybox.h"
extern int pwd_main(int argc, char **argv)
{
static char *buf;
buf = xgetcwd(buf);
if (buf != NULL) {
char *buf;
if ((buf = xgetcwd(NULL)) != NULL) {
puts(buf);
return EXIT_SUCCESS;
bb_fflush_stdout_and_exit(EXIT_SUCCESS);
}
return EXIT_FAILURE;
}