RISC-V: Add testcases for unsigned vector .SAT_TRUNC form 3
[official-gcc.git] / libgo / go / net / file_windows.go
blob241fa17617c2bf20073d275c479e01ed288dde58
1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 package net
7 import (
8 "os"
9 "syscall"
12 func fileConn(f *os.File) (Conn, error) {
13 // TODO: Implement this
14 return nil, syscall.EWINDOWS
17 func fileListener(f *os.File) (Listener, error) {
18 // TODO: Implement this
19 return nil, syscall.EWINDOWS
22 func filePacketConn(f *os.File) (PacketConn, error) {
23 // TODO: Implement this
24 return nil, syscall.EWINDOWS