1
0
mirror of https://github.com/golang/go synced 2024-11-18 14:04:45 -07:00

net: fix botched cgo netbsd merge

Fix botched cgo_netbsd.go merge and remove redundant +build directive.

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/6282048
This commit is contained in:
Joel Sing 2012-06-05 02:12:23 +10:00
parent 5131deeeb2
commit 622ace8ffe

View File

@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build netbsd
package net
/*
@ -12,9 +10,5 @@ package net
import "C"
func cgoAddrInfoFlags() C.int {
<<<<<<< local
return C.AI_CANONNAME
=======
return C.AI_CANONNAME | C.AI_V4MAPPED | C.AI_ALL
>>>>>>> other
}