From: Bryan C. Mills Date: Fri, 11 Nov 2022 18:12:47 +0000 (-0500) Subject: runtime/race: add missing copyright headers to syso import files X-Git-Tag: go1.20rc1~300 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=46bed9d04c5f1e0da557d79b9a35bf9331fcd33f;p=gostls13.git runtime/race: add missing copyright headers to syso import files These were apparently missed in CL 424034. Change-Id: I60fcdd8c16992177a23c0e701f4224b250cfabee Reviewed-on: https://go-review.googlesource.com/c/go/+/449855 Reviewed-by: Keith Randall TryBot-Result: Gopher Robot Auto-Submit: Bryan Mills Reviewed-by: Keith Randall Run-TryBot: Bryan Mills --- diff --git a/src/runtime/race/race_v1_amd64.go b/src/runtime/race/race_v1_amd64.go index 5bc9ebfc67..b8a20315fd 100644 --- a/src/runtime/race/race_v1_amd64.go +++ b/src/runtime/race/race_v1_amd64.go @@ -1,3 +1,7 @@ +// Copyright 2022 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. + //go:build (linux && !amd64.v3) || darwin || freebsd || netbsd || openbsd || windows // +build linux,!amd64.v3 darwin freebsd netbsd openbsd windows diff --git a/src/runtime/race/race_v3_amd64.go b/src/runtime/race/race_v3_amd64.go index 7d2395b907..913bb77f48 100644 --- a/src/runtime/race/race_v3_amd64.go +++ b/src/runtime/race/race_v3_amd64.go @@ -1,3 +1,7 @@ +// Copyright 2022 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. + //go:build linux && amd64.v3 // +build linux,amd64.v3