diff options
Diffstat (limited to 'Programs/_bootstrap_python.c')
| -rw-r--r-- | Programs/_bootstrap_python.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Programs/_bootstrap_python.c b/Programs/_bootstrap_python.c index f4d0167..75d455c 100644 --- a/Programs/_bootstrap_python.c +++ b/Programs/_bootstrap_python.c @@ -14,9 +14,13 @@ #include "Python/frozen_modules/importlib._bootstrap_external.h" /* End includes */ -/* Empty finalizer for deepfrozen modules*/ +/* Empty initializer for deepfrozen modules */ +void _Py_Deepfreeze_Init(void) +{ +} +/* Empty finalizer for deepfrozen modules */ void -_Py_Deepfreeze_Fini(void) +_Py_Deepfreeze_Fini(void) { } |
