X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fputenv.c;h=0602e44e327374759a85839b87fea6304d8f5e04;hb=c3a06f7b517d17794efd655e7e38e84ebdc5c3ea;hp=5fa576a8158b945a4bb03ccebbc2e0d64251f224;hpb=d691dc95255e598552049fa9d121a6f84cf36568;p=gnulib.git diff --git a/lib/putenv.c b/lib/putenv.c index 5fa576a81..0602e44e3 100644 --- a/lib/putenv.c +++ b/lib/putenv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1994, 1997, 1998, 2000, 2003, 2004, 2005, 2006 +/* Copyright (C) 1991, 1994, 1997, 1998, 2000, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. NOTE: The canonical source of this file is maintained with the GNU C @@ -57,7 +57,7 @@ __libc_lock_define_initialized (static, envlock) #endif static int -unsetenv (const char *name) +_unsetenv (const char *name) { size_t len; char **ep; @@ -105,7 +105,7 @@ rpl_putenv (const char *string) if (name_end == NULL) { /* Remove the variable from the environment. */ - return unsetenv (string); + return _unsetenv (string); } size = 0;