v / vlib / v2 / tests / target_codegen_example / freestanding_none.vv2
9 lines · 7 sloc · 175 bytes · 10a27a35f62541cee8c09d75d37629f27d89d055
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