summaryrefslogtreecommitdiff
path: root/src/pkg/net/cgo_stub.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/net/cgo_stub.go')
-rw-r--r--src/pkg/net/cgo_stub.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pkg/net/cgo_stub.go b/src/pkg/net/cgo_stub.go
index e28f6622e..c6277cb65 100644
--- a/src/pkg/net/cgo_stub.go
+++ b/src/pkg/net/cgo_stub.go
@@ -19,3 +19,7 @@ func cgoLookupPort(network, service string) (port int, err os.Error, completed b
func cgoLookupIP(name string) (addrs []IP, err os.Error, completed bool) {
return nil, nil, false
}
+
+func cgoLookupCNAME(name string) (cname string, err os.Error, completed bool) {
+ return "", nil, false
+}