Changeset 609 for branches/GNU/src/binutils/libiberty/putenv.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/libiberty/putenv.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 /* Copyright (C) 1991, 1994, 1995, 1996 Free Software Foundation, Inc.1 /* Copyright (C) 1991, 1994, 1995, 1996, 2002 Free Software Foundation, Inc. 2 2 This file based on putenv.c in the GNU C Library. 3 3 … … 17 17 Boston, MA 02111-1307, USA. */ 18 18 19 /* 20 21 @deftypefn Supplemental int putenv (const char *@var{string}) 22 23 Uses @code{setenv} or @code{unsetenv} to put @var{string} into 24 the environment or remove it. If @var{string} is of the form 25 @samp{name=value} the string is added; if no @samp{=} is present the 26 name is unset/removed. 27 28 @end deftypefn 29 30 */ 31 19 32 #if defined (_AIX) && !defined (__GNUC__) 20 33 #pragma alloca … … 26 39 27 40 #include "ansidecl.h" 41 42 #define putenv libiberty_putenv 28 43 29 44 #if HAVE_STDLIB_H … … 45 60 # endif /* alloca */ 46 61 #endif /* HAVE_ALLOCA_H */ 62 63 #undef putenv 47 64 48 65 /* Below this point, it's verbatim code from the glibc-2.0 implementation */ -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.