_io_write

func _io_write(fd: Int, buf: RawPtr, count: Int) 'io -> Int

Writes 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))
}