Subversion Repositories HelenOS-historic

Rev

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

Rev 424 Rev 426
Line 96... Line 96...
96
 
96
 
97
void *ofw_claim(const void *addr, const int size, const int align)
97
void *ofw_claim(const void *addr, const int size, const int align)
98
{
98
{
99
    return (void *) ofw_call("claim", 3, 1, addr, size, align);
99
    return (void *) ofw_call("claim", 3, 1, addr, size, align);
100
}
100
}
101
 
-
 
102
void putchar(const char ch)
-
 
103
{
-
 
104
    ofw_putchar(ch);
-
 
105
}
-