source: azure_iot_hub/trunk/musl-1.1.18/crt/rcrt1.~c@ 388

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

Azure IoT Hub Device C SDK を使ったサンプルの追加

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.