about summary refs log tree commit diff
path: root/library/std/src/sys
diff options
context:
space:
mode:
authorBen Kimock <kimockb@gmail.com>2024-09-02 16:14:28 -0400
committerBen Kimock <kimockb@gmail.com>2024-09-02 16:14:28 -0400
commitfcb7d3fdf3216ba50167ff8d7ae63e63932d9d06 (patch)
tree16d530a7561234fc38ba8d88e9108011447658e4 /library/std/src/sys
parent94885bc699512cfee8560e73c2a01ee6b4b76563 (diff)
downloadrust-fcb7d3fdf3216ba50167ff8d7ae63e63932d9d06.tar.gz
rust-fcb7d3fdf3216ba50167ff8d7ae63e63932d9d06.zip
Add missing read_buf stub for x86_64-unknown-l5re-uclibc
Diffstat (limited to 'library/std/src/sys')
-rw-r--r--library/std/src/sys/pal/unix/l4re.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/library/std/src/sys/pal/unix/l4re.rs b/library/std/src/sys/pal/unix/l4re.rs
index fe9559f2a56..52d39dcfb16 100644
--- a/library/std/src/sys/pal/unix/l4re.rs
+++ b/library/std/src/sys/pal/unix/l4re.rs
@@ -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!();
         }