mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-27 19:53:32 +08:00
557fab43bd
2002-02-23 Ulrich Drepper <drepper@redhat.com> * csu/set-init.c: Moved to... * sysdeps/mach/hurd/set-init.c: ...here. New file. * csu/Makefile: Don't compile set-init. * sysdeps/mach/hurd/Makefile: Compile set-init for subdir csu. * sysdeps/mach/hurd/i386/init-first.c: Call __init_misc in addition to __libc_init. * sysdeps/mach/hurd/mips/init-first.c: Likewise. * sysdeps/mach/hurd/powerpc/init-first.c: Likewise. * sysdeps/unix/sysv/linux/init-first.c: Call __init_misc instead of __libc_init. * misc/init-misc.c: Always export __init_misc. Don't define hooks for __libc_subinit.
41 lines
1.3 KiB
C
41 lines
1.3 KiB
C
/* Define and initialize `__progname' et. al.
|
|
Copyright (C) 1994,1995,1996,1997,1998,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
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, write to the Free
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
02111-1307 USA. */
|
|
|
|
#include <string.h>
|
|
|
|
char *__progname_full = (char *) "";
|
|
char *__progname = (char *) "";
|
|
weak_alias (__progname_full, program_invocation_name)
|
|
weak_alias (__progname, program_invocation_short_name)
|
|
|
|
|
|
void
|
|
__init_misc (int argc, char **argv, char **envp)
|
|
{
|
|
if (argv && argv[0])
|
|
{
|
|
char *p = strrchr (argv[0], '/');
|
|
if (p == NULL)
|
|
__progname = argv[0];
|
|
else
|
|
__progname = p + 1;
|
|
__progname_full = argv[0];
|
|
}
|
|
}
|