diff --git a/vlib/v/gen/cgen.v b/vlib/v/gen/cgen.v index d7035318d3..57aa717af9 100644 --- a/vlib/v/gen/cgen.v +++ b/vlib/v/gen/cgen.v @@ -435,7 +435,7 @@ fn (g mut Gen) stmt(node ast.Stmt) { // #include etc typ := it.val.all_before(' ') if typ in ['include', 'define'] { - g.includes.writeln('#$it.val') + g.definitions.writeln('#$it.val') } } ast.Import {}