vq / vlib / v2_toberemoved / tests / target_codegen_example / freestanding_none.vv2
9 lines · 7 sloc · 175 bytes · c0624b274a458fe3e487d89ae9554c2e8c25bdb6
Raw
1module main
2
3#include freestanding <platform_none.h>
4#flag freestanding -DPLATFORM_NONE_FREESTANDING
5fn C.platform_none_tick() int
6
7fn main() {
8 _ := C.platform_none_tick()
9}
10