Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2017-12-04 05:56:37 +0300
committerYaakov Selkowitz <yselkowi@redhat.com>2018-01-17 20:47:17 +0300
commit670b01da7f04f785df5bed9cd8e22076aa6166d5 (patch)
treeb8aaf51776e0a37aa03af1becae5c9f2c50c8d55 /newlib/libc/stdio64
parente6321aa6a668376c40bc2792a3bd392e94c29ad6 (diff)
ansification: remove _CAST_VOID
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/stdio64')
-rw-r--r--newlib/libc/stdio64/tmpfile64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdio64/tmpfile64.c b/newlib/libc/stdio64/tmpfile64.c
index d58aa1472..58b945d5b 100644
--- a/newlib/libc/stdio64/tmpfile64.c
+++ b/newlib/libc/stdio64/tmpfile64.c
@@ -76,7 +76,7 @@ _DEFUN (_tmpfile64_r, (ptr),
e = ptr->_errno;
if (!fp)
_close_r (ptr, fd);
- _CAST_VOID _remove_r (ptr, f);
+ (void) _remove_r (ptr, f);
ptr->_errno = e;
return fp;
}