about summary refs log tree commit diff
path: root/stdlib/secure-getenv.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/secure-getenv.c')
-rw-r--r--stdlib/secure-getenv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/stdlib/secure-getenv.c b/stdlib/secure-getenv.c
index 1b0e7d3331..5c146f02fa 100644
--- a/stdlib/secure-getenv.c
+++ b/stdlib/secure-getenv.c
@@ -24,8 +24,7 @@
    what values to accept from the environment.  This special version
    checks for SUID or SGID first before doing any work.  */
 char *
-__libc_secure_getenv (name)
-     const char *name;
+__libc_secure_getenv (const char *name)
 {
   return __libc_enable_secure ? NULL : getenv (name);
 }