From 5cc07af675901380a62eb23a2cb643db41dd4f7e Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 1 Feb 2012 18:25:51 -0500 Subject: [PATCH] syscall: fix build directive in types_linux.go The rule is that build directives can be preceded only by blank lines and other line comments, not /* */ comments. R=golang-dev, adg, bradfitz CC=golang-dev https://golang.org/cl/5619045 --- src/pkg/syscall/types_linux.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/pkg/syscall/types_linux.go b/src/pkg/syscall/types_linux.go index a02f21863b..395162f128 100644 --- a/src/pkg/syscall/types_linux.go +++ b/src/pkg/syscall/types_linux.go @@ -2,9 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -/* -Input to cgo -godefs. See also mkerrors.sh and mkall.sh -*/ +// Input to cgo -godefs. See also mkerrors.sh and mkall.sh // +build ignore -- 2.50.0