From 1dcbef203594509f023861969fbec7ec1fbb35e4 Mon Sep 17 00:00:00 2001 From: shupiaoyang Date: Tue, 26 Aug 2025 20:32:15 +0800 Subject: [PATCH] Add copyright headers to cmd/go files --- src/cmd/go/aiopt.go | 4 ++++ src/cmd/go/operators.go | 4 ++++ src/cmd/go/utils.go | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/src/cmd/go/aiopt.go b/src/cmd/go/aiopt.go index 3e1586951..6d72196ee 100644 --- a/src/cmd/go/aiopt.go +++ b/src/cmd/go/aiopt.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 main import ( diff --git a/src/cmd/go/operators.go b/src/cmd/go/operators.go index 2fc3792ee..571e5a7f0 100644 --- a/src/cmd/go/operators.go +++ b/src/cmd/go/operators.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 main import ( diff --git a/src/cmd/go/utils.go b/src/cmd/go/utils.go index 5c2fa3a97..b96a8f012 100644 --- a/src/cmd/go/utils.go +++ b/src/cmd/go/utils.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 main import ( -- Gitee