blob: b5908b22454d3b98e540e3e5abd4dd65c7b89dfd [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("mman") {
deps = [ "//zircon/third_party/ulib/musl:musl_internal" ]
sources = [
"madvise.c",
"memfd_create.c",
"mlock.c",
"mlockall.c",
"mmap.c",
"mprotect.c",
"msync.c",
"munlock.c",
"munlockall.c",
"munmap.c",
"posix_madvise.c",
"shm_open.c",
]
configs -= [ "//build/config:symbol_visibility_hidden" ]
}