Add missing read_buf stub for x86_64-unknown-l5re-uclibc

This commit is contained in:
Ben Kimock 2024-09-02 16:14:28 -04:00
parent 94885bc699
commit fcb7d3fdf3

View File

@ -54,6 +54,10 @@ pub fn read(&self, _: &mut [u8]) -> io::Result<usize> {
unimpl!();
}
pub fn read_buf(&self, _: BorrowedCursor<'_>) -> io::Result<()> {
unimpl!();
}
pub fn read_vectored(&self, _: &mut [IoSliceMut<'_>]) -> io::Result<usize> {
unimpl!();
}