libc: some stat things should be signed

This commit is contained in:
K. Lange 2018-10-12 12:45:39 +09:00
parent 8b304df414
commit fb0327a1cf
1 changed files with 2 additions and 2 deletions

View File

@ -16,10 +16,10 @@ struct stat {
uint16_t st_uid; uint16_t st_uid;
uint16_t st_gid; uint16_t st_gid;
uint16_t st_rdev; uint16_t st_rdev;
uint32_t st_size; int32_t st_size;
uint32_t st_atime; uint32_t st_atime;
uint32_t __unused1; uint32_t __unused1;
uint32_t st_mtime; int32_t st_mtime;
uint32_t __unused2; uint32_t __unused2;
uint32_t st_ctime; uint32_t st_ctime;
uint32_t __unused3; uint32_t __unused3;