]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libiberty/putenv.c
configure.in (MAKEINFO, PERL): Detect these.
[thirdparty/gcc.git] / libiberty / putenv.c
index 9d5692222cf1936b90a52e908a1dc8d0da8b6754..a655b59f8e354129a2d50742a2e83bd31cb0f693 100644 (file)
    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.  */
 
+/*
+
+@deftypefn Supplemental int putenv (const char *@var{string})
+
+Uses @code{setenv} or @code{unsetenv} to put @var{string} into
+the environment or remove it.  If @var{string} is of the form
+@samp{name=value} the string is added; if no `=' is present the
+name is unset/removed.
+
+@end deftypefn
+
+*/
+
 #if defined (_AIX) && !defined (__GNUC__)
  #pragma alloca
 #endif