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/string
parente6321aa6a668376c40bc2792a3bd392e94c29ad6 (diff)
ansification: remove _CAST_VOID
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/string')
-rw-r--r--newlib/libc/string/u_strerr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/string/u_strerr.c b/newlib/libc/string/u_strerr.c
index d3204df72..174d9170f 100644
--- a/newlib/libc/string/u_strerr.c
+++ b/newlib/libc/string/u_strerr.c
@@ -7,9 +7,9 @@ _DEFUN(_user_strerror, (errnum, internal, errptr),
int *errptr)
{
/* prevent warning about unused parameters */
- _CAST_VOID errnum;
- _CAST_VOID internal;
- _CAST_VOID errptr;
+ (void) errnum;
+ (void) internal;
+ (void) errptr;
return 0;
}