Skip to content

Commit 7e37d02

Browse files
committed
[libc] Fix headers for statvfs implementation
Summry: @lntue
1 parent a14baec commit 7e37d02

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

libc/include/llvm-libc-types/struct_statvfs.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
#ifndef LLVM_LIBC_TYPES_STRUCT_STATVFS_H
1010
#define LLVM_LIBC_TYPES_STRUCT_STATVFS_H
1111

12-
#include <llvm-libc-types/fsblkcnt_t.h>
13-
#include <llvm-libc-types/fsfilcnt_t.h>
12+
#include "fsblkcnt_t.h"
13+
#include "fsfilcnt_t.h"
1414

1515
struct statvfs {
1616
unsigned long f_bsize; /* Filesystem block size */

libc/src/sys/statvfs/fstatvfs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#ifndef LLVM_LIBC_SRC_SYS_STATVFS_FSTATVFS_H
1010
#define LLVM_LIBC_SRC_SYS_STATVFS_FSTATVFS_H
1111

12-
#include "llvm-libc-types/struct_statvfs.h"
12+
#include "include/llvm-libc-types/struct_statvfs.h"
1313
#include "src/__support/macros/config.h"
1414

1515
namespace LIBC_NAMESPACE_DECL {

libc/src/sys/statvfs/linux/statfs_utils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#ifndef LLVM_LIBC_SRC_SYS_STATVFS_LINUX_STATFS_TO_STATVFS_H
1010
#define LLVM_LIBC_SRC_SYS_STATVFS_LINUX_STATFS_TO_STATVFS_H
1111

12-
#include "llvm-libc-types/struct_statvfs.h"
12+
#include "include/llvm-libc-types/struct_statvfs.h"
1313
#include "src/__support/CPP/optional.h"
1414
#include "src/__support/OSUtil/syscall.h"
1515
#include "src/__support/macros/attributes.h"

libc/src/sys/statvfs/statvfs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#ifndef LLVM_LIBC_SRC_SYS_STATVFS_STATVFS_H
1010
#define LLVM_LIBC_SRC_SYS_STATVFS_STATVFS_H
1111

12-
#include "llvm-libc-types/struct_statvfs.h"
12+
#include "include/llvm-libc-types/struct_statvfs.h"
1313
#include "src/__support/macros/config.h"
1414

1515
namespace LIBC_NAMESPACE_DECL {

0 commit comments

Comments
 (0)