Fix regression in visium caused by sys/stat.h change

This commit is contained in:
Jeff Law
2019-08-20 09:26:10 -06:00
committed by Corinna Vinschen
parent f7f296b46f
commit d065170441
2 changed files with 6 additions and 6 deletions

View File

@@ -57,9 +57,9 @@ struct gdb_stat {
uint64_t st_size; /* total size, in bytes */
uint64_t st_blksize; /* blocksize for filesystem I/O */
uint64_t st_blocks; /* number of blocks allocated */
gdb_time_t st_atime; /* time of last access */
gdb_time_t st_mtime; /* time of last modification */
gdb_time_t st_ctime; /* time of last change */
gdb_time_t st_atim; /* time of last access */
gdb_time_t st_mtim; /* time of last modification */
gdb_time_t st_ctim; /* time of last change */
};
struct gdb_timeval {