Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1541 → Rev 1542

/uspace/trunk/fb/sysio.c
47,7 → 47,10
 
static void sysputs(char *s)
{
__SYSCALL3(SYS_IO, 1, (sysarg_t)s, strlen(s));
while (*s) {
sysput(*(s++));
}
// __SYSCALL3(SYS_IO, 1, (sysarg_t)s, strlen(s));
}
 
/** Send clearscreen sequence to console */