fix return value of ungetc when argument is outside unsigned char range
[musl] / arch / mipsn32 / bits / stat.h
1 struct stat {
2         dev_t st_dev;
3         long __pad1[2];
4         ino_t st_ino;
5         mode_t st_mode;
6         nlink_t st_nlink;
7         uid_t st_uid;
8         gid_t st_gid;
9         dev_t st_rdev;
10         long __pad2[2];
11         off_t st_size;
12         struct timespec st_atim;
13         struct timespec st_mtim;
14         struct timespec st_ctim;
15         blksize_t st_blksize;
16         long __pad3;
17         blkcnt_t st_blocks;
18         long __pad4[14];
19 };