made a lot of changes
This commit is contained in:
@@ -10,11 +10,5 @@
|
||||
int
|
||||
vprintf(const char *format, va_list arg)
|
||||
{
|
||||
int retval;
|
||||
|
||||
retval = _doprnt(format, arg, stdout);
|
||||
if (retval >= 0 && io_testflag(stdout, _IOLBF))
|
||||
if (fflush(stdout)) return EOF;
|
||||
|
||||
return retval;
|
||||
return _doprnt(format, arg, stdout);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user