aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Include/internal/pycore_interp_structs.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/internal/pycore_interp_structs.h')
-rw-r--r--Include/internal/pycore_interp_structs.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Include/internal/pycore_interp_structs.h b/Include/internal/pycore_interp_structs.h
index f1f427d99de..542a75617b4 100644
--- a/Include/internal/pycore_interp_structs.h
+++ b/Include/internal/pycore_interp_structs.h
@@ -73,6 +73,7 @@ struct trampoline_api_st {
int (*free_state)(void* state);
void *state;
Py_ssize_t code_padding;
+ Py_ssize_t code_alignment;
};
#endif
@@ -129,8 +130,6 @@ struct _atexit_runtime_state {
//###################
// interpreter atexit
-typedef void (*atexit_datacallbackfunc)(void *);
-
typedef struct atexit_callback {
atexit_datacallbackfunc func;
void *data;