3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-09 20:50:51 +00:00

Header changes so it will compile on VS

This commit is contained in:
William Speirs 2014-10-16 12:06:54 -04:00 committed by Clifford Wolf
parent fda52f05f2
commit 31267a1ae8
10 changed files with 79 additions and 17 deletions

View file

@ -17,9 +17,18 @@
*
*/
#include <sys/types.h>
#include <unistd.h>
#include "kernel/yosys.h"
#include <sys/types.h>
#ifndef _WIN32
# include <unistd.h>
#else
# include <io.h>
#endif
#include "kernel/register.h"
#include "kernel/rtlil.h"
#include "kernel/log.h"
USING_YOSYS_NAMESPACE
PRIVATE_NAMESPACE_BEGIN