diff options
Diffstat (limited to 'libio/bits/stdio.h')
-rw-r--r-- | libio/bits/stdio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/bits/stdio.h b/libio/bits/stdio.h index 60c937f072..9e951ad8e4 100644 --- a/libio/bits/stdio.h +++ b/libio/bits/stdio.h @@ -109,14 +109,14 @@ getline (char **__lineptr, size_t *__n, FILE *__stream) # ifdef __USE_MISC /* Faster versions when locking is not required. */ __STDIO_INLINE int -feof_unlocked (FILE *__stream) __THROW +__NTH (feof_unlocked (FILE *__stream)) { return _IO_feof_unlocked (__stream); } /* Faster versions when locking is not required. */ __STDIO_INLINE int -ferror_unlocked (FILE *__stream) __THROW +__NTH (ferror_unlocked (FILE *__stream)) { return _IO_ferror_unlocked (__stream); } |