From d572d56460f44d2dc893a3df1d867c4ad1d73147 Mon Sep 17 00:00:00 2001 From: apio Date: Sat, 27 May 2023 12:22:06 +0200 Subject: [PATCH] libc: Add dummy time fields to struct stat --- libc/include/bits/struct_stat.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libc/include/bits/struct_stat.h b/libc/include/bits/struct_stat.h index 038ceb7a..84b4c2cf 100644 --- a/libc/include/bits/struct_stat.h +++ b/libc/include/bits/struct_stat.h @@ -15,6 +15,10 @@ struct stat gid_t st_gid; off_t st_size; dev_t st_rdev; + // FIXME: Actually fill these fields in. + time_t st_atime; + time_t st_mtime; + time_t st_ctime; }; #endif