diff options
| author | Mikio Hara <mikioh.mikioh@gmail.com> | 2011-11-16 06:59:08 +0900 |
|---|---|---|
| committer | Mikio Hara <mikioh.mikioh@gmail.com> | 2011-11-16 06:59:08 +0900 |
| commit | 471e43cf00ebafa5f9763a7093bb20a9ceea35ae (patch) | |
| tree | 945adc60ac597aff3a4ac94d06f0996a40be67c6 | |
| parent | 3a6744d890c9a9f13ebe4b053969380383024cef (diff) | |
| download | go-471e43cf00ebafa5f9763a7093bb20a9ceea35ae.tar.xz | |
net, syscall: add missing copyright notices
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5375099
| -rw-r--r-- | src/pkg/net/pipe.go | 4 | ||||
| -rw-r--r-- | src/pkg/syscall/zerrors_plan9_386.go | 4 | ||||
| -rw-r--r-- | src/pkg/syscall/ztypes_windows.go | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/src/pkg/net/pipe.go b/src/pkg/net/pipe.go index b99e6e658d..0ce7ccb9d7 100644 --- a/src/pkg/net/pipe.go +++ b/src/pkg/net/pipe.go @@ -1,3 +1,7 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + package net import ( diff --git a/src/pkg/syscall/zerrors_plan9_386.go b/src/pkg/syscall/zerrors_plan9_386.go index 65198c3ad7..694fd690cf 100644 --- a/src/pkg/syscall/zerrors_plan9_386.go +++ b/src/pkg/syscall/zerrors_plan9_386.go @@ -1,3 +1,7 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + package syscall // Constants diff --git a/src/pkg/syscall/ztypes_windows.go b/src/pkg/syscall/ztypes_windows.go index 211fc0c411..1515de81a7 100644 --- a/src/pkg/syscall/ztypes_windows.go +++ b/src/pkg/syscall/ztypes_windows.go @@ -1,3 +1,7 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + package syscall const ( |
