Author: Amaury Forgeot d'Arc <amaur...@gmail.com> Branch: win32-faulthandler Changeset: r91001:ecba8ea23c8c Date: 2017-04-06 17:45 +0200 http://bitbucket.org/pypy/pypy/changeset/ecba8ea23c8c/
Log: Small progress diff --git a/rpython/rlib/rvmprof/src/rvmprof.h b/rpython/rlib/rvmprof/src/rvmprof.h --- a/rpython/rlib/rvmprof/src/rvmprof.h +++ b/rpython/rlib/rvmprof/src/rvmprof.h @@ -5,8 +5,6 @@ #define SINGLE_BUF_SIZE (8192 - 2 * sizeof(unsigned int)) #ifdef VMPROF_WINDOWS -// #include "msiinttypes/inttypes.h" -// #include "msiinttypes/stdint.h" #include <crtdefs.h> #else #include <inttypes.h> diff --git a/rpython/rlib/rvmprof/src/shared/_vmprof.h b/rpython/rlib/rvmprof/src/shared/_vmprof.h --- a/rpython/rlib/rvmprof/src/shared/_vmprof.h +++ b/rpython/rlib/rvmprof/src/shared/_vmprof.h @@ -8,8 +8,9 @@ // CPython 3.6 defines all the inttypes for us, we do not need the msiinttypes // library for that version or any newer! #if (PY_VERSION_HEX < 0x3060000) -#include "msiinttypes/inttypes.h" -#include "msiinttypes/stdint.h" +#include <crtdefs.h> +typedef __int64 int64_t; +typedef unsigned __int64 uint64_t; #endif #else _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit