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