printf now compiles cleanly under both libc5 and libc6.

-Erik
This commit is contained in:
Eric Andersen 2000-06-19 17:52:17 +00:00
parent 67e32304b1
commit b7362e36a8
2 changed files with 2 additions and 4 deletions

View File

@ -57,7 +57,6 @@
#include <stdlib.h>
#include <fcntl.h>
#include <ctype.h>
#include <libintl.h>
#ifndef S_IFMT
@ -171,7 +170,7 @@ int printf_main(int argc, char **argv)
fprintf(stderr, "excess args ignored");
*/
exit(exit_status);
return(exit_status);
}
/* Print the text in FORMAT, using ARGV (with ARGC elements) for

View File

@ -57,7 +57,6 @@
#include <stdlib.h>
#include <fcntl.h>
#include <ctype.h>
#include <libintl.h>
#ifndef S_IFMT
@ -171,7 +170,7 @@ int printf_main(int argc, char **argv)
fprintf(stderr, "excess args ignored");
*/
exit(exit_status);
return(exit_status);
}
/* Print the text in FORMAT, using ARGV (with ARGC elements) for