blob: 29185be4958f0c66365b0ed83b28f09901c36826 [file] [edit]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
///
/// \file
/// Implementation header for chroot.
///
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_UNISTD_CHROOT_H
#define LLVM_LIBC_SRC_UNISTD_CHROOT_H
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
int chroot(const char *path);
} // namespace LIBC_NAMESPACE_DECL
#endif // LLVM_LIBC_SRC_UNISTD_CHROOT_H