diff options
author | Yaakov Selkowitz <yselkowi@redhat.com> | 2017-12-03 20:41:16 -0600 |
---|---|---|
committer | Yaakov Selkowitz <yselkowi@redhat.com> | 2018-01-17 11:47:13 -0600 |
commit | eea249da3bc81776246ad5163f5eb887afdd3659 (patch) | |
tree | 610f12206d520381c1ef4370720522f304bed2c8 /newlib/libc/string | |
parent | e13e191b6052a62701d8fb22c3660df23d3b6ec1 (diff) | |
download | newlib-eea249da3bc81776246ad5163f5eb887afdd3659.zip newlib-eea249da3bc81776246ad5163f5eb887afdd3659.tar.gz newlib-eea249da3bc81776246ad5163f5eb887afdd3659.tar.bz2 |
ansification: remove _PARAMS
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/string')
-rw-r--r-- | newlib/libc/string/strerror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/string/strerror.c b/newlib/libc/string/strerror.c index 43fa1f5..8d5c188 100644 --- a/newlib/libc/string/strerror.c +++ b/newlib/libc/string/strerror.c @@ -392,7 +392,7 @@ _DEFUN (_strerror_r, (ptr, errnum, internal, errptr), int *errptr) { char *error; - extern char *_user_strerror _PARAMS ((int, int, int *)); + extern char *_user_strerror (int, int, int *); switch (errnum) { |