From 46bed9d04c5f1e0da557d79b9a35bf9331fcd33f Mon Sep 17 00:00:00 2001 From: "Bryan C. Mills" Date: Fri, 11 Nov 2022 13:12:47 -0500 Subject: [PATCH] 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 --- src/runtime/race/race_v1_amd64.go | 4 ++++ src/runtime/race/race_v3_amd64.go | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/runtime/race/race_v1_amd64.go b/src/runtime/race/race_v1_amd64.go index 5bc9ebfc673..b8a20315fdc 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 7d2395b9076..913bb77f484 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