Files
vystem/vyld/_vyx_start.c
2026-03-31 22:15:00 +02:00

7 lines
107 B
C

// SPDX-License-Identifier: MPL-2.0
extern int main(void);
void _vyx_start(void) {
main();
for (;;);
}