mirror of
https://github.com/fluencelabs/musl
synced 2025-06-08 04:21:39 +00:00
this is a bit ugly, and the motivation for supporting it is questionable. however the main factors were: 1. it will be useful to have this for certain internal purposes anyway -- things like syslog. 2. applications can just save argv[0] in main, but it's hard to fix non-portable library code that's depending on being able to get the invocation name without the main application's help.
23 lines
403 B
C
23 lines
403 B
C
#include "libc.h"
|
|
|
|
#ifdef USE_LIBC_ACCESSOR
|
|
struct __libc *__libc_loc()
|
|
{
|
|
static struct __libc __libc;
|
|
return &__libc;
|
|
}
|
|
#else
|
|
struct __libc __libc;
|
|
#endif
|
|
|
|
#ifdef BROKEN_VISIBILITY
|
|
__asm__(".hidden __libc");
|
|
#endif
|
|
|
|
size_t __hwcap;
|
|
size_t __sysinfo;
|
|
char *__progname=0, *__progname_full=0;
|
|
|
|
weak_alias(__progname, program_invocation_short_name);
|
|
weak_alias(__progname_full, program_invocation_name);
|