Skip to content

Commit 796672f

Browse files
committed
Add back include
1 parent 1aeb2c5 commit 796672f

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

mypyc/common.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@
6868
# Runtime C library files that are always included (some ops may bring
6969
# extra dependencies via mypyc.ir.SourceDep)
7070
RUNTIME_C_FILES: Final = [
71-
"static_data.c",
7271
"init.c",
7372
"getargs.c",
7473
"getargsfast.c",

mypyc/lib-rt/init.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include <Python.h>
22
#include "CPy.h"
3+
#include "static_data.c"
34

45
struct ExcDummyStruct _CPy_ExcDummyStruct = { PyObject_HEAD_INIT(NULL) };
56
PyObject *_CPy_ExcDummy = (PyObject *)&_CPy_ExcDummyStruct;

0 commit comments

Comments
 (0)