mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
b7c38238bd
Packages added: - golang.org/x/net/context updated - mattn/go-colorable - karalabe/hid - mattn/go-color - go-stack/stack
15 lines
320 B
Go
15 lines
320 B
Go
// Copyright 2011 Evan Shaw. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build darwin dragonfly freebsd linux openbsd solaris
|
|
|
|
package mmap
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
const _SYS_MSYNC = syscall.SYS_MSYNC
|
|
const _MS_SYNC = syscall.MS_SYNC
|