# HG changeset patch
# User Jean-Pierre Flori <jean-pierre.flor@ssi.gouv.fr>
# Date 1338990164 -7200
# Node ID 14d55477e4d33778fe80bb5f4447205dfe122700
# Parent ad444ad5da12d2b32bec33a70f43ae937d26e863
#12173: Replace flint_stack_cleanup by _fmpz_cleanup
diff --git a/sage/libs/flint/flint.pxd b/sage/libs/flint/flint.pxd
a
|
b
|
|
1 | | cdef extern from "flint.h": |
| 1 | cdef extern from "FLINT/flint.h": |
2 | 2 | |
3 | 3 | cdef long FLINT_BITS |
4 | 4 | cdef long FLINT_D_BITS |
5 | 5 | |
6 | 6 | cdef unsigned long FLINT_BIT_COUNT(unsigned long) |
7 | | void flint_stack_cleanup() |
| 7 | void _fmpz_cleanup() |
diff --git a/sage/libs/flint/flint.pyx b/sage/libs/flint/flint.pyx
a
|
b
|
|
14 | 14 | include "../../ext/cdefs.pxi" |
15 | 15 | |
16 | 16 | def free_flint_stack(): |
17 | | flint_stack_cleanup() |
| 17 | _fmpz_cleanup() |