Skip to content

Commit ab114f3

Browse files
committed
[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.
1 parent a2bdf04 commit ab114f3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

mypyc/lib-rt/CPy.h

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#include <frameobject.h>
99
#include <structmember.h>
1010
#include <assert.h>
11+
#include <stdint.h>
1112
#include "pythonsupport.h"
1213
#include "mypyc_util.h"
1314

0 commit comments

Comments
 (0)