func _io_write(fd: Int, buf: RawPtr, count: Int) 'io -> IntWrites up to count bytes from buf to fd; returns a count or negative errno.
View Source
pub func _io_write(fd: Int, buf: RawPtr, count: Int) 'io -> Int {
'io(request: .write(fd, buf, count))
}