Skip to content

Commit

Permalink
Add missing read_buf stub for x86_64-unknown-l5re-uclibc
Browse files Browse the repository at this point in the history
  • Loading branch information
saethlin committed Sep 2, 2024
1 parent 94885bc commit fcb7d3f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions library/std/src/sys/pal/unix/l4re.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ pub mod net {
unimpl!();
}

pub fn read_buf(&self, _: BorrowedCursor<'_>) -> io::Result<()> {
unimpl!();
}

pub fn read_vectored(&self, _: &mut [IoSliceMut<'_>]) -> io::Result<usize> {
unimpl!();
}
Expand Down

0 comments on commit fcb7d3f

Please sign in to comment.