Subversion Repositories HelenOS-historic

Rev

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

Rev 713 Rev 954
Line 45... Line 45...
45
    return EOF;
45
    return EOF;
46
}
46
}
47
 
47
 
48
ssize_t write(int fd, const void * buf, size_t count)
48
ssize_t write(int fd, const void * buf, size_t count)
49
{
49
{
50
    return (ssize_t) __syscall(SYS_IO, (sysarg_t) fd, (sysarg_t) buf, (sysarg_t) count);
50
    return (ssize_t) __SYSCALL3(SYS_IO, (sysarg_t) fd, (sysarg_t) buf, (sysarg_t) count);
51
}
51
}