diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-11-16 02:17:26 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-11-16 02:17:26 +0000 |
commit | 85857f932b10330e5c96bedf15e81bcfc0207737 (patch) | |
tree | 24cb6d5dd63007daf1fd3d87171dc1c3ec838b8f /manual | |
parent | 821dcbccd172d8f35644cd6da81337cc739dde94 (diff) | |
download | glibc-85857f932b10330e5c96bedf15e81bcfc0207737.tar glibc-85857f932b10330e5c96bedf15e81bcfc0207737.tar.gz glibc-85857f932b10330e5c96bedf15e81bcfc0207737.tar.bz2 glibc-85857f932b10330e5c96bedf15e81bcfc0207737.zip |
Update.
2000-11-15 Jakub Jelinek <jakub@redhat.com>
* dlfcn/default.c (main): Add test for dladdr of main returning
argv[0] in dli_fname field.
2000-11-15 Jakub Jelinek <jakub@redhat.com>
* Makeconfig (run-program-prefix): Move test-static test into the
variable.
* sysdeps/alpha/dl-machine.h (RTLD_START): Update _dl_argv.
* sysdeps/sparc/sparc32/dl-machine.h (RTLD_START): Likewise,
schedule instructions.
* sysdeps/sparc/sparc64/dl-machine.h (RTLD_START): Likewise,
schedule instructions, fix a bug in copying auxiliary data.
* manual/startup.texi (Program Arguments): Fix type of main's envp
parameter.
Reported by Raúl Núñez de Arenas Coronado <dervishd@linuxfreak.com>.
Diffstat (limited to 'manual')
-rw-r--r-- | manual/startup.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/startup.texi b/manual/startup.texi index 50649c9197..526d19d639 100644 --- a/manual/startup.texi +++ b/manual/startup.texi @@ -86,7 +86,7 @@ three elements, @code{"cat"}, @code{"foo"} and @code{"bar"}. In Unix systems you can define @code{main} a third way, using three arguments: @smallexample -int main (int @var{argc}, char *@var{argv}[], char *@var{envp}) +int main (int @var{argc}, char *@var{argv}[], char *@var{envp}[]) @end smallexample The first two arguments are just the same. The third argument |