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