blob: 8229a9a5b649a6b43cb7306b4577ee64353378d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <errno.h>
int __thread __mlibc_errno;
char *program_invocation_name = nullptr;
char *program_invocation_short_name = nullptr;
extern char *__progname __attribute__((__weak__, __alias__("program_invocation_short_name")));
extern char *__progname_full __attribute__((__weak__, __alias__("program_invocation_name")));
int *__errno_location() {
return &__mlibc_errno;
}
|