summaryrefslogtreecommitdiff
path: root/stdlib/putenv.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/putenv.c')
-rw-r--r--stdlib/putenv.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/stdlib/putenv.c b/stdlib/putenv.c
index 829bea20bf..71b9ab1d8c 100644
--- a/stdlib/putenv.c
+++ b/stdlib/putenv.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -49,8 +49,7 @@ extern char *alloca ();
/* Put STRING, which is of the form "NAME=VALUE", in the environment. */
int
-putenv (string)
- char *string;
+putenv (char *string)
{
const char *const name_end = strchr (string, '=');