diff options
Diffstat (limited to 'newlib/libc/include/sys/reent.h')
-rw-r--r-- | newlib/libc/include/sys/reent.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/newlib/libc/include/sys/reent.h b/newlib/libc/include/sys/reent.h index b5d5c7da5..55fb9ff2a 100644 --- a/newlib/libc/include/sys/reent.h +++ b/newlib/libc/include/sys/reent.h @@ -212,6 +212,7 @@ struct __sFILE { #ifndef __SINGLE_THREAD__ _flock_t _lock; /* for thread-safety locking */ #endif + _mbstate_t _mbstate; /* for wide char stdio functions. */ int _flags2; /* for future use */ }; @@ -265,6 +266,7 @@ struct __sFILE64 { #ifndef __SINGLE_THREAD__ _flock_t _lock; /* for thread-safety locking */ #endif + _mbstate_t _mbstate; /* for wide char stdio functions. */ }; typedef struct __sFILE64 __FILE; #else |