]> Cypherpunks repositories - gostls13.git/commitdiff
all: move //go:build lines below copyright notice
authorTobias Klauser <tklauser@distanz.ch>
Fri, 9 Sep 2022 08:34:58 +0000 (10:34 +0200)
committerGopher Robot <gobot@golang.org>
Wed, 14 Sep 2022 14:17:04 +0000 (14:17 +0000)
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>
src/cmd/link/internal/ld/elf_test.go
src/crypto/sha1/issue15617_test.go
src/syscall/flock.go

index 15eaa1388b443a1cc4c8d7cf3f6478daf475609d..7d59249f3a46be8640e0d76bc3a7f37d31f01d26 100644 (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 (
index df4e28f64eee9e149bb1df5fa9faa224a08986d6..116c78ff743ccdf7457c5200f5631e670d79a62a 100644 (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 (
index 8cb8f16153a9be79e86c823f608b778a56b8f6be..820f526fe09718f8282bd771a3c656848686a54d 100644 (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"