v2 / vlib / v / gen / c / testdata / platform_wrapper / file_windows.c.v
10 lines · 8 sloc · 167 bytes · 1b9a8b996dafa08d698eda1da0e6459ee122bfe9
Raw
1module platform_wrapper
2
3pub fn abc() int {
4 return 987654321
5}
6
7pub fn fn_defined_on_windows() int {
8 // println('hi from ${@FN}, in file_windows.c.v')
9 return 123
10}
11