1// Copyright 2019 The Go Authors. 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 !hurd
6
7package syscall
8
9// Removed the mount call for GNU/Hurd, it exists but use translators.
10// Functionality is not the same as descibed in Linux <sys/mount.h>.
11// Removed the madvise call for GNU/Hurd, not yet implemented.
12
13//sys	Mount(source string, target string, fstype string, flags uintptr, data string) (err error)
14//mount(source *byte, target *byte, fstype *byte, flags _C_long, data *byte) _C_int
15
16//sys Madvise(b []byte, advice int) (err error)
17//madvise(addr *byte, len Size_t, advice _C_int) _C_int
18