From ab114f3db4696e0187d47137147e648cb28134a0 Mon Sep 17 00:00:00 2001 From: Jukka Lehtosalo Date: Tue, 29 Sep 2020 14:27:20 +0100 Subject: [PATCH] [mypyc] Try to fix errors about int32_t on Python 3.5 and Appveyor (#9502) 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 bec7fd6e19e5..403cdda778fc 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"