summary refs log tree commit diff
path: root/stdlib/putenv.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/putenv.c')
-rw-r--r--stdlib/putenv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/stdlib/putenv.c b/stdlib/putenv.c
index 829bea20bf..57d343282b 100644
--- a/stdlib/putenv.c
+++ b/stdlib/putenv.c
@@ -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, '=');