Loading...
--- Libc/Libc-1507.100.9/stdlib/FreeBSD/getenv.c
+++ Libc/Libc-1669.40.2/stdlib/FreeBSD/getenv.c
@@ -53,10 +53,7 @@
* This routine *should* be a static; don't use it.
*/
__private_extern__ char *
-__findenv_locked(name, offset, environ)
- const char *name;
- int *offset;
- char **environ;
+__findenv_locked(const char *name, int *offset, char **environ)
{
int len, i;
const char *np;
@@ -118,8 +115,7 @@
* Returns ptr to value associated with name, if any, else NULL.
*/
char *
-getenv(name)
- const char *name;
+getenv(const char *name)
{
int offset;
environ_lock_np();