3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-05-29 02:09:12 +00:00

Fixed win32 troubles with f.readsome()

This commit is contained in:
Clifford Wolf 2014-10-11 11:36:22 +02:00
parent a32e067e5c
commit 8263f6a74a
6 changed files with 21 additions and 4 deletions

View file

@ -64,7 +64,7 @@ YOSYS_NAMESPACE_END
return TOK_ID;
#define YY_INPUT(buf,result,max_size) \
result = lexin->readsome(buf, max_size);
result = readsome(*lexin, buf, max_size);
%}