diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2020-03-28 09:49:08 +0100 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2020-03-28 09:49:08 +0100 |
commit | 1dbc70172830c57cda22e4bc82d2db57a2067203 (patch) | |
tree | 135b9a14f0a5bc1b5c3ec5f9d90c0b00eef3fadf | |
parent | 5cdcd6ec7949c856de39d032f68ba8ddd0ee9fb3 (diff) | |
download | yosys-1dbc70172830c57cda22e4bc82d2db57a2067203.tar.gz yosys-1dbc70172830c57cda22e4bc82d2db57a2067203.tar.bz2 yosys-1dbc70172830c57cda22e4bc82d2db57a2067203.zip |
Explicit include of csignal
-rw-r--r-- | passes/cmds/exec.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/passes/cmds/exec.cc b/passes/cmds/exec.cc index e4676fd33..7eeefe705 100644 --- a/passes/cmds/exec.cc +++ b/passes/cmds/exec.cc @@ -22,6 +22,7 @@ #include <cstdio> #if defined(_WIN32) +# include <csignal> # define WIFEXITED(x) 1 # define WIFSIGNALED(x) 0 # define WIFSTOPPED(x) 0 |