diff options
Diffstat (limited to 'src/sim/init.hh')
-rw-r--r-- | src/sim/init.hh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/sim/init.hh b/src/sim/init.hh index 8fc0be982..ee40b9790 100644 --- a/src/sim/init.hh +++ b/src/sim/init.hh @@ -36,6 +36,8 @@ */ #include <list> +#include <inttypes.h> + #ifndef PyObject_HEAD struct _object; typedef _object PyObject; @@ -46,12 +48,12 @@ struct EmbeddedPython const char *filename; const char *abspath; const char *modpath; - const char *code; + const uint8_t *code; int zlen; int len; EmbeddedPython(const char *filename, const char *abspath, - const char *modpath, const char *code, int zlen, int len); + const char *modpath, const uint8_t *code, int zlen, int len); PyObject *getCode() const; bool addModule() const; |