diff options
author | Siesh1oo <siesh1oo@siesh1oo.no> | 2014-03-10 14:35:46 +0100 |
---|---|---|
committer | Siesh1oo <siesh1oo@siesh1oo.no> | 2014-03-10 14:35:46 +0100 |
commit | 9b3d83359cc3f55049b5a48cb736a9a43bf04afc (patch) | |
tree | e0baa95395e4a3ac3f359ab15d9393b0d8ae5998 /passes/fsm/fsm_recode.cc | |
parent | 78c64a64017dbc3e15aeac3246d5fc159555fbe2 (diff) | |
download | yosys-9b3d83359cc3f55049b5a48cb736a9a43bf04afc.tar.gz yosys-9b3d83359cc3f55049b5a48cb736a9a43bf04afc.tar.bz2 yosys-9b3d83359cc3f55049b5a48cb736a9a43bf04afc.zip |
- passes/techmap/dfflibmap.cc, passes/fsm/fsm_recode.cc, passes/cmds/select.cc: #include <cerrno> for errno, use c++-style includes.
Diffstat (limited to 'passes/fsm/fsm_recode.cc')
-rw-r--r-- | passes/fsm/fsm_recode.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/passes/fsm/fsm_recode.cc b/passes/fsm/fsm_recode.cc index 5a4e091cf..b02287962 100644 --- a/passes/fsm/fsm_recode.cc +++ b/passes/fsm/fsm_recode.cc @@ -23,8 +23,9 @@ #include "kernel/consteval.h" #include "kernel/celltypes.h" #include "fsmdata.h" -#include "math.h" +#include <math.h> #include <string.h> +#include <errno.h> static void fm_set_fsm_print(RTLIL::Cell *cell, RTLIL::Module *module, FsmData &fsm_data, const char *prefix, FILE *f) { |