diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-02-17 22:06:09 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-02-17 22:06:09 +0000 |
commit | d1b10e78e439dd8e1707cc90cce5960013ad1b90 (patch) | |
tree | 9e9b8b1d204020b97789f14f764877ffc71cee0a /manual | |
parent | 1d5f032e1b28c86f7402dd62447f2be2b767f6c4 (diff) | |
download | glibc-d1b10e78e439dd8e1707cc90cce5960013ad1b90.tar glibc-d1b10e78e439dd8e1707cc90cce5960013ad1b90.tar.gz glibc-d1b10e78e439dd8e1707cc90cce5960013ad1b90.tar.bz2 glibc-d1b10e78e439dd8e1707cc90cce5960013ad1b90.zip |
Fix documented parameters to execle.
Diffstat (limited to 'manual')
-rw-r--r-- | manual/process.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/process.texi b/manual/process.texi index 1946793dec..53d467c1c3 100644 --- a/manual/process.texi +++ b/manual/process.texi @@ -321,7 +321,7 @@ variable; see @ref{Environment Access}. @comment unistd.h @comment POSIX.1 -@deftypefun int execle (const char *@var{filename}, const char *@var{arg0}, char *const @var{env}@t{[]}, @dots{}) +@deftypefun int execle (const char *@var{filename}, const char *@var{arg0}, @dots{}, char *const @var{env}@t{[]}) This is similar to @code{execl}, but permits you to specify the environment for the new program explicitly. The environment argument is passed following the null pointer that marks the last @var{argv} |