1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

table.v: stdout

This commit is contained in:
Alexander Medvednikov 2019-06-24 17:30:30 +02:00
parent b494ee34e0
commit 877d1c6255

View File

@ -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')