1 //===-- Linux implementation of fstat -------------------------------------===//
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
7 //===----------------------------------------------------------------------===//
9 #include "src/sys/stat/fstat.h"
10 #include "kernel_statx.h"
11 #include "src/__support/macros/config.h"
12 #include "src/errno/libc_errno.h"
14 #include "src/__support/common.h"
16 #include "hdr/fcntl_macros.h"
19 namespace LIBC_NAMESPACE_DECL
{
21 LLVM_LIBC_FUNCTION(int, fstat
, (int fd
, struct stat
*statbuf
)) {
22 int err
= statx(fd
, "", AT_EMPTY_PATH
, statbuf
);
30 } // namespace LIBC_NAMESPACE_DECL