1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00
1998-03-09 23:36  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/unix/sysv/linux/init-first.c [!PIC]: Expect arguments
	in correct format.
	* sysdeps/unix/sysv/linux/libc-start.c: Call __libc_init_first
	with correct parameters.
	[!PIC]: Initialize __libc_multiple_libcs.
This commit is contained in:
Ulrich Drepper
1998-03-09 23:40:44 +00:00
parent 0c367d923b
commit 1393c74581
3 changed files with 32 additions and 9 deletions

View File

@ -1,5 +1,5 @@
/* Initialization code run first thing by the ELF startup code. Linux version.
Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
Copyright (C) 1995, 1996, 1997, 1998 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
@ -97,9 +97,11 @@ __libc_init_first (void)
}
#else
SYSDEP_CALL_INIT(__libc_init_first, init);
void
__libc_init_first (int argc, char **argv, char **envp)
{
init (argc, argv, envp);
}
#endif