diff options
Diffstat (limited to 'newlib/libc/machine/spu/feof.c')
-rw-r--r-- | newlib/libc/machine/spu/feof.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/newlib/libc/machine/spu/feof.c b/newlib/libc/machine/spu/feof.c index 521dbe194..25e3a8f82 100644 --- a/newlib/libc/machine/spu/feof.c +++ b/newlib/libc/machine/spu/feof.c @@ -46,9 +46,6 @@ _DEFUN (feof, (fp), result = fp->_fp; - __send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_FEOF, &result); - - - return result; + return __send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_FEOF, &result); } #endif /* ! _REENT_ONLY */ |