mirror of
https://github.com/golang/sys.git
synced 2026-02-08 11:46:04 +03:00
Fixes golang/go#60409 Change-Id: I2d872a1a6fb63c27ab3753deff370e1c2f752bdd Reviewed-on: https://go-review.googlesource.com/c/sys/+/508397 Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Benny Siegert <bsiegert@gmail.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@google.com>
14 lines
295 B
Go
14 lines
295 B
Go
// Copyright 2023 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build linux || netbsd
|
|
// +build linux netbsd
|
|
|
|
package unix
|
|
|
|
const (
|
|
MremapFixed = mremapFixed
|
|
MremapMaymove = mremapMaymove
|
|
)
|