From 877d1c6255425c118451e041b1604e3f7070ee78 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Mon, 24 Jun 2019 17:30:30 +0200 Subject: [PATCH] table.v: stdout --- compiler/table.v | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/table.v b/compiler/table.v index 5eb9d4888e..e088f4e73e 100644 --- a/compiler/table.v +++ b/compiler/table.v @@ -139,6 +139,7 @@ fn new_table(obfuscate bool) *Table { t.register_type('voidptr') t.register_type('va_list') t.register_const('stdin', 'int', 'main', false) + t.register_const('stdout', 'int', 'main', false) t.register_const('stderr', 'int', 'main', false) t.register_type_with_parent('map_string', 'map') t.register_type_with_parent('map_int', 'map')