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

os.v: clean up, remove C code, os.exec()

This commit is contained in:
Alexander Medvednikov
2019-06-26 16:11:25 +02:00
parent 3dea0ac8e1
commit fa925f3092
3 changed files with 44 additions and 51 deletions

View File

@@ -138,6 +138,7 @@ fn new_table(obfuscate bool) *Table {
t.register_const('stdin', 'int', 'main', false)
t.register_const('stdout', 'int', 'main', false)
t.register_const('stderr', 'int', 'main', false)
t.register_const('errno', 'int', 'main', false)
t.register_type_with_parent('map_string', 'map')
t.register_type_with_parent('map_int', 'map')
return t