|
|
296178 |
/**
|
|
|
296178 |
* options: posix session, fallback terminal emulator
|
|
|
296178 |
* x86_64-nt64-midipix-gcc --target-help | grep -A2 posix
|
|
|
296178 |
**/
|
|
|
296178 |
|
|
|
296178 |
static const int __disabled = 0;
|
|
|
296178 |
extern const int __crtopt_posix __attribute((weak,alias("__disabled")));
|
|
|
3cf872 |
extern const int __crtopt_dinga __attribute((weak,alias("__disabled")));
|
|
|
dd0615 |
extern const int __crtopt_ldso __attribute((weak,alias("__disabled")));
|
|
|
dd0615 |
extern const int __crtopt_vrfs __attribute((weak,alias("__disabled")));
|
|
|
296178 |
|
|
|
8b88c6 |
int main();
|
|
|
8b88c6 |
void __libc_loader_init(void * __main, int flags);
|
|
|
296178 |
|
|
|
c6e963 |
void _start(void)
|
|
|
296178 |
{
|
|
|
8b88c6 |
__libc_loader_init(
|
|
|
8b88c6 |
main,
|
|
|
c6e963 |
__crtopt_posix
|
|
|
c6e963 |
| __crtopt_dinga
|
|
|
c6e963 |
| __crtopt_ldso
|
|
|
c6e963 |
| __crtopt_vrfs);
|
|
|
296178 |
}
|