mirror of
https://github.com/fluencelabs/musl
synced 2025-04-29 00:52:15 +00:00
9 lines
99 B
C
9 lines
99 B
C
#ifndef SHARED
|
|
void _start_c(long *p);
|
|
|
|
void _start(void) {
|
|
long p = 0;
|
|
_start_c(&p);
|
|
}
|
|
#endif
|