diff options
author | Ian Lance Taylor <iant@golang.org> | 2024-10-29 15:39:02 -0700 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2024-10-30 11:33:07 -0700 |
commit | aad9de322774c25e80f3ade6ecd96f45b62bf40a (patch) | |
tree | dad1c1926debccd3385ff78d2041bfe2606c71ab /libgo/go/syscall/syscall_funcs.go | |
parent | a2cd5d1f106f4dce3a93aede00cf082f144464be (diff) | |
download | gcc-aad9de322774c25e80f3ade6ecd96f45b62bf40a.zip gcc-aad9de322774c25e80f3ade6ecd96f45b62bf40a.tar.gz gcc-aad9de322774c25e80f3ade6ecd96f45b62bf40a.tar.bz2 |
syscall: don't define syscall stub on Hurd
Patch from Samuel Thibault.
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/623415
Diffstat (limited to 'libgo/go/syscall/syscall_funcs.go')
-rw-r--r-- | libgo/go/syscall/syscall_funcs.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/syscall/syscall_funcs.go b/libgo/go/syscall/syscall_funcs.go index a906fa5..fc14cb1 100644 --- a/libgo/go/syscall/syscall_funcs.go +++ b/libgo/go/syscall/syscall_funcs.go @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build darwin || dragonfly || freebsd || hurd || linux || netbsd || openbsd || solaris -// +build darwin dragonfly freebsd hurd linux netbsd openbsd solaris +//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris +// +build darwin dragonfly freebsd linux netbsd openbsd solaris package syscall |