From 942a97481850ece065264e79f06d8b582be9c7a4 Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Sat, 6 Jan 2018 22:30:46 +0100 Subject: [PATCH] Add free definition --- python/src/deltachat/_build.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/src/deltachat/_build.py b/python/src/deltachat/_build.py index 2a38fbac..47ac424c 100644 --- a/python/src/deltachat/_build.py +++ b/python/src/deltachat/_build.py @@ -16,6 +16,7 @@ def ffibuilder(): ) builder.cdef(""" typedef int... time_t; + void free(void *ptr); """) cc = distutils.ccompiler.new_compiler(force=True) distutils.sysconfig.customize_compiler(cc)