platformstart-libc.ha (234B)
1 // SPDX-License-Identifier: MPL-2.0 2 // (c) Hare authors <https://harelang.org> 3 4 export fn start_linux(iv: *[*]uintptr) never = { 5 argc = iv[0]: size; 6 argv = &iv[1]: *[*]*u8; 7 envp = &argv[argc + 1]: *[*]nullable *u8; 8 start_ha(); 9 };