From 9add09c7064197d0011565aa15b1d385948ad736 Mon Sep 17 00:00:00 2001 From: Jukka Lehtosalo Date: Tue, 29 Sep 2020 12:31:20 +0100 Subject: [PATCH] [mypyc] Try to fix errors about int32_t on Python 3.5 and Appveyor Explicitly include `stdint.h`. I'll monitor the Appveyor build to see if this helps. Work on #9501. --- mypyc/lib-rt/CPy.h | 1 + 1 file changed, 1 insertion(+) diff --git a/mypyc/lib-rt/CPy.h b/mypyc/lib-rt/CPy.h index c0f998b15c42..c367efdae032 100644 --- a/mypyc/lib-rt/CPy.h +++ b/mypyc/lib-rt/CPy.h @@ -8,6 +8,7 @@ #include #include #include +#include #include "pythonsupport.h" #include "mypyc_util.h"