@@ -1,4 +1,5 @@
// +build !windows
+// +build !wasm
package buf
@@ -1,3 +1,5 @@
+
import (
@@ -0,0 +1,12 @@
+package buf
+import (
+ "io"
+ "syscall"
+)
+const useReadv = false
+func NewReadVReader(reader io.Reader, rawConn syscall.RawConn) Reader {
+ panic("not implemented")
+}
package buf_test
@@ -1,5 +1,3 @@
-// +build windows
-
package domainsocket