diff options
| author | Clifford Wolf <clifford@clifford.at> | 2014-08-01 19:43:28 +0200 | 
|---|---|---|
| committer | Clifford Wolf <clifford@clifford.at> | 2014-08-01 19:43:28 +0200 | 
| commit | 75ffd1643c97321255bc591edf0c1a7097b8dce9 (patch) | |
| tree | 12d691c2c84346b018ada3e3c90c0712cf9fd116 /kernel/yosys.h | |
| parent | bd74ed7da467de11128c57c4c424febe4a7e2f39 (diff) | |
| download | yosys-75ffd1643c97321255bc591edf0c1a7097b8dce9.tar.gz yosys-75ffd1643c97321255bc591edf0c1a7097b8dce9.tar.bz2 yosys-75ffd1643c97321255bc591edf0c1a7097b8dce9.zip | |
Added logfile hash to statistics footer
Diffstat (limited to 'kernel/yosys.h')
| -rw-r--r-- | kernel/yosys.h | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/kernel/yosys.h b/kernel/yosys.h index d9db57c51..e90dcc46e 100644 --- a/kernel/yosys.h +++ b/kernel/yosys.h @@ -43,6 +43,7 @@  #include <string>  #include <algorithm>  #include <initializer_list> +#include <stdarg.h>  #define PRIVATE_NAMESPACE_BEGIN  namespace {  #define PRIVATE_NAMESPACE_END    } @@ -68,6 +69,7 @@ namespace RTLIL {  }  std::string stringf(const char *fmt, ...); +std::string vstringf(const char *fmt, va_list ap);  template<typename T> int SIZE(const T &obj) { return obj.size(); }  int SIZE(RTLIL::Wire *wire); | 
