diff options
Diffstat (limited to 'lib/stdio-impl.h')
| -rw-r--r-- | lib/stdio-impl.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/stdio-impl.h b/lib/stdio-impl.h index 4260468b612..d49625780bb 100644 --- a/lib/stdio-impl.h +++ b/lib/stdio-impl.h | |||
| @@ -18,11 +18,16 @@ | |||
| 18 | the same implementation of stdio extension API, except that some fields | 18 | the same implementation of stdio extension API, except that some fields |
| 19 | have different naming conventions, or their access requires some casts. */ | 19 | have different naming conventions, or their access requires some casts. */ |
| 20 | 20 | ||
| 21 | /* Glibc 2.28 made _IO_IN_BACKUP private. For now, work around this | 21 | /* Glibc 2.28 made _IO_UNBUFFERED and _IO_IN_BACKUP private. For now, work |
| 22 | problem by defining it ourselves. FIXME: Do not rely on glibc | 22 | around this problem by defining them ourselves. FIXME: Do not rely on glibc |
| 23 | internals. */ | 23 | internals. */ |
| 24 | #if !defined _IO_IN_BACKUP && defined _IO_EOF_SEEN | 24 | #if defined _IO_EOF_SEEN |
| 25 | # define _IO_IN_BACKUP 0x100 | 25 | # if !defined _IO_UNBUFFERED |
| 26 | # define _IO_UNBUFFERED 0x2 | ||
| 27 | # endif | ||
| 28 | # if !defined _IO_IN_BACKUP | ||
| 29 | # define _IO_IN_BACKUP 0x100 | ||
| 30 | # endif | ||
| 26 | #endif | 31 | #endif |
| 27 | 32 | ||
| 28 | /* BSD stdio derived implementations. */ | 33 | /* BSD stdio derived implementations. */ |