summaryrefslogtreecommitdiff
path: root/libiberty/setenv.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2001-09-26 18:45:50 +0000
committerDJ Delorie <dj@delorie.com>2001-09-26 18:45:50 +0000
commit80699cc1158e6902fa7052f15008a7d14011f50c (patch)
tree210ff566d6a01b4c48d8ca94bc1555d5c1ef770b /libiberty/setenv.c
parent08a3fc08804a1e6f4567fbfd0ed64a08b66c98e7 (diff)
downloadbinutils-redhat-80699cc1158e6902fa7052f15008a7d14011f50c.tar.gz
merge from gcc
Diffstat (limited to 'libiberty/setenv.c')
-rw-r--r--libiberty/setenv.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/libiberty/setenv.c b/libiberty/setenv.c
index f025716e7f..dcf84e1106 100644
--- a/libiberty/setenv.c
+++ b/libiberty/setenv.c
@@ -16,6 +16,22 @@
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
+
+/*
+
+@deftypefn Supplemental int setenv (const char *@var{name}, const char *@var{value}, int @var{overwrite})
+@deftypefnx Supplemental void unsetenv (const char *@var{name})
+
+@code{setenv} adds @var{name} to the environment with value
+@var{value}. If the name was already present in the environment,
+the new value will be stored only if @var{overwrite} is non-zero.
+The companion @code{unsetenv} function removes @var{name} from the
+environment. This implementation is not safe for multithreaded code.
+
+@end deftypefn
+
+*/
+
#if HAVE_CONFIG_H
# include <config.h>
#endif