1
0
mirror of https://github.com/golang/go synced 2024-09-30 12:08:32 -06:00

all: move //go:build lines below copyright notice

Change-Id: Ib6196f01b1927ea8a84c095f445320f03a514dd1
Reviewed-on: https://go-review.googlesource.com/c/go/+/429796
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@google.com>
This commit is contained in:
Tobias Klauser 2022-09-09 10:34:58 +02:00 committed by Gopher Robot
parent 585c438615
commit 244127e4b4
3 changed files with 7 additions and 7 deletions

View File

@ -1,10 +1,10 @@
//go:build cgo
// +build cgo
// Copyright 2019 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 cgo
// +build cgo
package ld
import (

View File

@ -1,9 +1,9 @@
//go:build amd64 && (linux || darwin)
// Copyright 2016 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 amd64 && (linux || darwin)
package sha1_test
import (

View File

@ -1,9 +1,9 @@
//go:build linux || freebsd || openbsd || netbsd || dragonfly
// Copyright 2014 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 || freebsd || openbsd || netbsd || dragonfly
package syscall
import "unsafe"