]> Cypherpunks repositories - gostls13.git/commitdiff
internal/syscall/windows/sysdll: mark package as Windows-only
authorBrad Fitzpatrick <bradfitz@golang.org>
Wed, 8 May 2019 18:40:20 +0000 (18:40 +0000)
committerBrad Fitzpatrick <bradfitz@golang.org>
Wed, 8 May 2019 21:21:39 +0000 (21:21 +0000)
Updates #31920

Change-Id: Ie24ed5bab249e2f90d1740f42a8b8d94fd0983f5
Reviewed-on: https://go-review.googlesource.com/c/go/+/176019
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
src/internal/syscall/windows/sysdll/sysdll.go

index 4e0018f3877905ae1a82acfae4fd2e70173845ec..c587c19c77d45a31af9d77e18a30e35e627e1a81 100644 (file)
@@ -2,6 +2,8 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
+// +build windows
+
 // Package sysdll is an internal leaf package that records and reports
 // which Windows DLL names are used by Go itself. These DLLs are then
 // only loaded from the System32 directory. See Issue 14959.