diff options
author | DJ Delorie <dj@redhat.com> | 2002-01-22 15:03:29 -0500 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2002-01-22 15:03:29 -0500 |
commit | 9ce3f7e5d3e94dbe814dbe1d2212064cb9084014 (patch) | |
tree | 4668c0ff40f185a82c1b9c01b0388f432c6cf685 /libiberty/putenv.c | |
parent | 816e265a1b3af7b3e97c8716b7e6afcee0d3c275 (diff) | |
download | gcc-9ce3f7e5d3e94dbe814dbe1d2212064cb9084014.tar.gz |
Makefile.in (TESTLIB): New.
* Makefile.in (TESTLIB): New. This library is for future
testsuites.
(CFILES, REQUIRED_OFILES, CONFIGURED_OFILES): Re-alphabetize,
break down by letter.
(REQUIRED_OFILES): List long-to-compile files first.
(maint-deps): New, target for updating dependencies.
(dependencies): Update.
* maint-tool: Add dependency-generating option.
* configure.in: Check for _doprnt even if we're not providing it.
* configure: Regenerate.
* _doprnt.c: Modifications to allow compiling on any platform.
* copysign.c: Likewise.
* putenv.c: Likewise.
* setenv.c: Likewise.
* vsprintf.c: Likewise.
From-SVN: r49090
Diffstat (limited to 'libiberty/putenv.c')
-rw-r--r-- | libiberty/putenv.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libiberty/putenv.c b/libiberty/putenv.c index 58012fc83ad..6d027dc5aaa 100644 --- a/libiberty/putenv.c +++ b/libiberty/putenv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1994, 1995, 1996 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1994, 1995, 1996, 2002 Free Software Foundation, Inc. This file based on putenv.c in the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -39,6 +39,8 @@ name is unset/removed. #include "ansidecl.h" +#define putenv libiberty_putenv + #if HAVE_STDLIB_H # include <stdlib.h> #endif @@ -58,6 +60,8 @@ extern char *alloca (); # endif /* alloca */ #endif /* HAVE_ALLOCA_H */ +#undef putenv + /* Below this point, it's verbatim code from the glibc-2.0 implementation */ |