diff options
Diffstat (limited to 'libiberty/putenv.c')
-rw-r--r-- | libiberty/putenv.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libiberty/putenv.c b/libiberty/putenv.c index 6d027dc..e04b759 100644 --- a/libiberty/putenv.c +++ b/libiberty/putenv.c @@ -67,8 +67,7 @@ extern char *alloca (); /* Put STRING, which is of the form "NAME=VALUE", in the environment. */ int -putenv (string) - const char *string; +putenv (const char *string) { const char *const name_end = strchr (string, '='); |