Add PR check to suggest alternatives to using undef (#118506)
[llvm-project.git] / libc / src / sys / mman / mprotect.h
blob890e9859405d5548fe72d7fbe19e4522c66bf027
1 //===-- Implementation header for mprotect function -------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_LIBC_SRC_SYS_MMAN_MPROTECT_H
10 #define LLVM_LIBC_SRC_SYS_MMAN_MPROTECT_H
12 #include "src/__support/macros/config.h"
13 #include <sys/mman.h> // For size_t and off_t
15 namespace LIBC_NAMESPACE_DECL {
17 int mprotect(void *addr, size_t size, int prot);
19 } // namespace LIBC_NAMESPACE_DECL
21 #endif // LLVM_LIBC_SRC_SYS_MMAN_MPROTECT_H