diff options
author | Mikio Hara <mikioh.mikioh@gmail.com> | 2014-09-18 19:17:55 +0900 |
---|---|---|
committer | Mikio Hara <mikioh.mikioh@gmail.com> | 2014-09-18 19:17:55 +0900 |
commit | 484cc6715192efd4bfea57647eeb66c93aecfb0c (patch) | |
tree | 4601fd4ed52d2e3aef2f96da25531c6744478b4e /src/net/file_unix.go | |
parent | 8c2484ec11d27324423e3cf27cc9ac6b34394c7d (diff) | |
download | go-git-484cc6715192efd4bfea57647eeb66c93aecfb0c.tar.gz |
net: separate NaCl dependent placeholders from BSD's
To clarify the dependency of NaCl platform.
LGTM=adg
R=golang-codereviews, adg
CC=golang-codereviews
https://golang.org/cl/143830044
Diffstat (limited to 'src/net/file_unix.go')
-rw-r--r-- | src/net/file_unix.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/file_unix.go b/src/net/file_unix.go index 07b3ecf626..214a4196c8 100644 --- a/src/net/file_unix.go +++ b/src/net/file_unix.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris +// +build darwin dragonfly freebsd linux netbsd openbsd solaris package net |