diff options
author | Roland McGrath <roland@gnu.org> | 2002-06-13 08:56:05 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-06-13 08:56:05 +0000 |
commit | 79a479ce697f3e01f6b705a6478403b437086925 (patch) | |
tree | 384ead3ce85e72d8d761a2b0aa15b6ee6ebbea5f /sysdeps | |
parent | 3580423e32d85a89a1f28930d5a31e89114e0f56 (diff) | |
download | glibc-79a479ce697f3e01f6b705a6478403b437086925.tar.gz glibc-79a479ce697f3e01f6b705a6478403b437086925.tar.xz glibc-79a479ce697f3e01f6b705a6478403b437086925.zip |
2002-06-13 Roland McGrath <roland@frob.com>
* hurd/hurdstartup.h (_hurd_startup): int -> intptr_t in MAIN arg type. * hurd/hurdstartup.c (_hurd_startup): Likewise. Use intptr_t instead of int for argc in stack layout. * sysdeps/mach/hurd/alpha/init-first.c (init): Fix argument type. (_dl_init_first): Likewise. (_hurd_stack_setup): Likewise. (init1): Add a cast.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/mach/hurd/alpha/init-first.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/mach/hurd/alpha/init-first.c b/sysdeps/mach/hurd/alpha/init-first.c index bb60cd07d2..e15e2cadef 100644 --- a/sysdeps/mach/hurd/alpha/init-first.c +++ b/sysdeps/mach/hurd/alpha/init-first.c @@ -89,7 +89,7 @@ static void init1 (intptr_t *data) { int argc = (intptr_t) *data; - char **argv = &data[1]; + char **argv = (char **) &data[1]; char **envp = &argv[argc + 1]; struct hurd_startup_data *d; @@ -136,7 +136,7 @@ init1 (intptr_t *data) static inline void -init (int *data) +init (intptr_t *data) { int argc = *data; char **argv = (void *) (data + 1); @@ -255,7 +255,7 @@ first_init (void) stack set up just as the user will see it, so it can switch stacks. */ void -_dl_init_first (int argc, ...) +_dl_init_first (intptr_t argc, ...) { first_init (); @@ -283,7 +283,7 @@ strong_alias (posixland_init, __libc_init_first); void -_hurd_stack_setup (volatile int argc, ...) +_hurd_stack_setup (volatile intptr_t argc, ...) { first_init (); |