diff options
Diffstat (limited to 'libio/bits/types')
| -rw-r--r-- | libio/bits/types/struct_FILE.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libio/bits/types/struct_FILE.h b/libio/bits/types/struct_FILE.h index 0e8ac64e36..2012d70681 100644 --- a/libio/bits/types/struct_FILE.h +++ b/libio/bits/types/struct_FILE.h @@ -97,8 +97,15 @@ struct _IO_FILE_complete void *_freeres_buf; struct _IO_FILE **_prevchain; int _mode; +#ifdef __LP64__ + int _unused3; +#endif + __uint64_t _total_written; +#ifndef __LP64__ + int _unused3; +#endif /* Make sure we don't get into trouble again. */ - char _unused2[15 * sizeof (int) - 5 * sizeof (void *)]; + char _unused2[12 * sizeof (int) - 5 * sizeof (void *)]; }; /* These macros are used by bits/stdio.h and internal headers. */ |
