diff options
| author | Russ Cox <rsc@golang.org> | 2012-02-01 18:25:51 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2012-02-01 18:25:51 -0500 |
| commit | 5cc07af675901380a62eb23a2cb643db41dd4f7e (patch) | |
| tree | 4e705cf0dfaf72f682296d90ccaa7c645a400d0c /src | |
| parent | b53ce1e66221be41a0b869869ceba73b795c8c3e (diff) | |
| download | go-5cc07af675901380a62eb23a2cb643db41dd4f7e.tar.xz | |
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
Diffstat (limited to 'src')
| -rw-r--r-- | src/pkg/syscall/types_linux.go | 4 |
1 files changed, 1 insertions, 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 |
