_io_read

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

Reads up to count bytes from fd into buf; returns a count or negative errno.

View Source
pub func _io_read(fd: Int, buf: RawPtr, count: Int) 'io -> Int {
	'io(request: .read(fd, buf, count))
}