aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/cgo
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2021-04-12 19:05:01 -0700
committerBrad Fitzpatrick <bradfitz@golang.org>2021-04-13 13:56:21 +0000
commit13a4e8c41cd1d242a435d44e7f66f370e5306a8c (patch)
treec00f0ce2faedde0c57ac47f0ebb3443093e83ffd /src/runtime/cgo
parent3e5bba0a44b880541fb72220a883e259d0f34a83 (diff)
downloadgo-13a4e8c41cd1d242a435d44e7f66f370e5306a8c.tar.gz
go-13a4e8c41cd1d242a435d44e7f66f370e5306a8c.zip
all: simplify the spelling of Linux
The prefix didn't help clarify anything. Change-Id: I897fd4022ce9df42a548b15714e4b592618ca547 Reviewed-on: https://go-review.googlesource.com/c/go/+/309573 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Filippo Valsorda <filippo@golang.org>
Diffstat (limited to 'src/runtime/cgo')
-rw-r--r--src/runtime/cgo/gcc_sigaction.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/cgo/gcc_sigaction.c b/src/runtime/cgo/gcc_sigaction.c
index e510e359fe..890008e327 100644
--- a/src/runtime/cgo/gcc_sigaction.c
+++ b/src/runtime/cgo/gcc_sigaction.c
@@ -23,7 +23,7 @@ typedef struct {
} go_sigaction_t;
// SA_RESTORER is part of the kernel interface.
-// This is GNU/Linux i386/amd64 specific.
+// This is Linux i386/amd64 specific.
#ifndef SA_RESTORER
#define SA_RESTORER 0x4000000
#endif