blob: c68a745fb9da9aa87a687a9f29a20d302d9e4e1a [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
//
//===----------------------------------------------------------------------===//
///
/// ile
/// Linux implementation of umask.
///
//===----------------------------------------------------------------------===//
#include "src/sys/stat/umask.h"
#include "hdr/types/mode_t.h"
#include "src/__support/OSUtil/linux/syscall_wrappers/umask.h"
#include "src/__support/common.h"
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(mode_t, umask, (mode_t cmask)) {
return linux_syscalls::umask(cmask);
}
} // namespace LIBC_NAMESPACE_DECL