Author: Ronan Lamy <[email protected]> Branch: Changeset: r91168:0c21123991d2 Date: 2017-05-02 17:15 +0100 http://bitbucket.org/pypy/pypy/changeset/0c21123991d2/
Log: Backport changes from py3.5 branch 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 @@ -6,8 +6,10 @@ #define SINGLE_BUF_SIZE (8192 - 2 * sizeof(unsigned int)) #ifdef VMPROF_WINDOWS -#include "msiinttypes/inttypes.h" -#include "msiinttypes/stdint.h" +#include <crtdefs.h> +typedef __int64 int64_t; +typedef unsigned __int64 uint64_t; +typedef intptr_t ssize_t; #else #include <inttypes.h> #include <stdint.h> _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
