1// Copyright 2011 Evan Shaw. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5// +build darwin dragonfly freebsd linux openbsd solaris
6
7package mmap
8
9import (
10	"syscall"
11)
12
13const _SYS_MSYNC = syscall.SYS_MSYNC
14const _MS_SYNC = syscall.MS_SYNC
15