diff options
Diffstat (limited to 'libio')
-rw-r--r-- | libio/strops.c | 9 | ||||
-rw-r--r-- | libio/wstrops.c | 10 |
2 files changed, 4 insertions, 15 deletions
diff --git a/libio/strops.c b/libio/strops.c index c3222e0803..05270ce407 100644 --- a/libio/strops.c +++ b/libio/strops.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1997-2004, 2006, 2007 Free Software Foundation, Inc. +/* Copyright (C) 1993, 1997-2003, 2004, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -166,12 +166,7 @@ _IO_str_underflow (fp) if (fp->_IO_read_ptr < fp->_IO_read_end) return *((unsigned char *) fp->_IO_read_ptr); else - { - /* We have to reset errno since callers check for errno being - EINTR and there has been no such problem here. */ - __set_errno (0); - return EOF; - } + return EOF; } INTDEF(_IO_str_underflow) diff --git a/libio/wstrops.c b/libio/wstrops.c index dfb312f6b7..c5aae7bc6a 100644 --- a/libio/wstrops.c +++ b/libio/wstrops.c @@ -1,5 +1,4 @@ -/* Copyright (C) 1993,1997-1999,2001-2004,2006,2007 - Free Software Foundation, Inc. +/* Copyright (C) 1993,1997-1999,2001-2004, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -155,12 +154,7 @@ _IO_wstr_underflow (fp) if (fp->_wide_data->_IO_read_ptr < fp->_wide_data->_IO_read_end) return *fp->_wide_data->_IO_read_ptr; else - { - /* We have to reset errno since callers check for errno being - EINTR and there has been no such problem here. */ - __set_errno (0); - return WEOF; - } + return WEOF; } |