From 94b15ac15b19853e705663046fe6671ba178cdc0 Mon Sep 17 00:00:00 2001 From: roland Date: Tue, 14 May 2002 02:22:46 +0000 Subject: [PATCH] 2002-05-13 Roland McGrath * hurd/hurdinit.c (_hurd_init): Use internal name _hurd_new_proc_init. --- hurd/hurdinit.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hurd/hurdinit.c b/hurd/hurdinit.c index c7f9d4200e..259f8a3547 100644 --- a/hurd/hurdinit.c +++ b/hurd/hurdinit.c @@ -51,6 +51,8 @@ _hurd_ports_use (int which, error_t (*operate) (mach_port_t)) DEFINE_HOOK (_hurd_subinit, (void)); +__typeof (_hurd_proc_init) _hurd_new_proc_init; /* below */ + /* Initialize the library data structures from the ints and ports passed to us by the exec server. @@ -89,7 +91,7 @@ _hurd_init (int flags, char **argv, /* Tell the proc server we exist, if it does. */ if (portarray[INIT_PORT_PROC] != MACH_PORT_NULL) - _hurd_proc_init (argv, intarray, intarraysize); + _hurd_new_proc_init (argv, intarray, intarraysize); /* All done with init ints and ports. */ __vm_deallocate (__mach_task_self (), -- 2.11.0