From 79a479ce697f3e01f6b705a6478403b437086925 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Thu, 13 Jun 2002 08:56:05 +0000 Subject: 2002-06-13 Roland McGrath * 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. --- hurd/hurdstartup.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'hurd/hurdstartup.h') diff --git a/hurd/hurdstartup.h b/hurd/hurdstartup.h index 5d40c90..e527668 100644 --- a/hurd/hurdstartup.h +++ b/hurd/hurdstartup.h @@ -1,5 +1,5 @@ /* Data from initial program startup for running under the GNU Hurd. - Copyright (C) 1995, 1997 Free Software Foundation, Inc. + Copyright (C) 1995,97,2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -20,6 +20,7 @@ #ifndef _HURDSTARTUP_H #define _HURDSTARTUP_H 1 +# include /* Interesting data saved from the exec_startup reply. The DATA argument to *MAIN (see below) points to: @@ -57,7 +58,7 @@ struct hurd_startup_data of the entry point function that is called with the stack exactly as the exec server or kernel sets it. */ -extern void _hurd_startup (void **argptr, void (*main) (int *data)); +extern void _hurd_startup (void **argptr, void (*main) (intptr_t *data)); #endif /* hurdstartup.h */ -- cgit v1.1