Subversion Repositories HelenOS-historic

Rev

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

Rev 534 Rev 583
Line 29... Line 29...
29
#include <putchar.h>
29
#include <putchar.h>
30
#include <arch/ski/ski.h>
30
#include <arch/ski/ski.h>
31
 
31
 
32
void putchar(const char ch)
32
void putchar(const char ch)
33
{
33
{
34
    ski_putchar(ch);
34
    ski_write(ch);
35
}
35
}