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

os.dir(); fix vroot on Windows

This commit is contained in:
Alexander Medvednikov
2019-07-16 01:57:03 +02:00
parent 9177256726
commit cc06fe7ae6
5 changed files with 28 additions and 1 deletions

View File

@ -1,3 +1,7 @@
module os
#include <dirent.h>
const (
PathSeparator = '/'
)