Subversion Repositories HelenOS-historic

Rev

Rev 1508 | Rev 1519 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1508 Rev 1518
Line 75... Line 75...
75
{
75
{
76
    int i;
76
    int i;
77
    ipcarg_t r0,r1;
77
    ipcarg_t r0,r1;
78
 
78
 
79
    for (i = 0; i < count; i++)
79
    for (i = 0; i < count; i++)
80
        ipc_call_async_2(console_phone, CONSOLE_PUTCHAR, ((const char *)buf)[i], 0, NULL, NULL);
80
        send_call(console_phone, CONSOLE_PUTCHAR, ((const char *)buf)[i]);
81
   
81
   
82
    return count;
82
    return count;
83
}
83
}
84
 
84
 
85
 
85