7 lines
107 B
C
7 lines
107 B
C
// SPDX-License-Identifier: MPL-2.0
|
|
extern int main(void);
|
|
void _vyx_start(void) {
|
|
main();
|
|
for (;;);
|
|
}
|