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/stdlib/setenv.c | |
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/stdlib/setenv.c')
-rw-r--r-- | newlib/libc/stdlib/setenv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdlib/setenv.c b/newlib/libc/stdlib/setenv.c index c963a33..e68e91d 100644 --- a/newlib/libc/stdlib/setenv.c +++ b/newlib/libc/stdlib/setenv.c @@ -23,7 +23,7 @@ #include <stdlib.h> #include <string.h> -extern int _unsetenv_r _PARAMS ((struct _reent *, const char *)); +extern int _unsetenv_r (struct _reent *, const char *); /* * setenv -- |