source: asp3_tinet_ecnl_arm/trunk/musl-1.1.18/crt/rcrt1.~c@ 352

Last change on this file since 352 was 352, checked in by coas-nagasima, 6 years ago

arm向けASP3版ECNLを追加

File size: 439 bytes
Line 
1#define START "_start"
2#define _dlstart_c _start_c
3#include "../ldso/dlstart.c"
4
5int main();
6void _init() __attribute__((weak));
7void _fini() __attribute__((weak));
8_Noreturn int __libc_start_main(int (*)(), int, char **,
9 void (*)(), void(*)(), void(*)());
10
11__attribute__((__visibility__("hidden")))
12_Noreturn void __dls2(unsigned char *base, size_t *sp)
13{
14 __libc_start_main(main, *sp, (void *)(sp+1), _init, _fini, 0);
15}
Note: See TracBrowser for help on using the repository browser.