Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2669 → Rev 2670

/trunk/uspace/lib/libc/generic/io/vprintf.c
43,7 → 43,7
 
static int vprintf_write(const char *str, size_t count, void *unused)
{
return write(1, str, count);
return write_stdout(str, count);
}
 
/** Print formatted text.