summaryrefslogtreecommitdiff
path: root/stdlib/getenv.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/getenv.c')
-rw-r--r--stdlib/getenv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/stdlib/getenv.c b/stdlib/getenv.c
index f0842fd0cf..2e40053852 100644
--- a/stdlib/getenv.c
+++ b/stdlib/getenv.c
@@ -30,8 +30,7 @@
two characters which we can access. By doing this we can avoid using the
`strncmp' most of the time. */
char *
-getenv (name)
- const char *name;
+getenv (const char *name)
{
size_t len = strlen (name);
char **ep;