libc: Add dummy time fields to struct stat
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
apio 2023-05-27 12:22:06 +02:00
parent 18115ca04a
commit d572d56460
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -15,6 +15,10 @@ struct stat
gid_t st_gid; gid_t st_gid;
off_t st_size; off_t st_size;
dev_t st_rdev; dev_t st_rdev;
// FIXME: Actually fill these fields in.
time_t st_atime;
time_t st_mtime;
time_t st_ctime;
}; };
#endif #endif