1/*
2 * Closure require special memmory support on x86_64 and PPC64: executation must be
3 * explicitly enabled for the memory used for closure.
4 */
5#ifndef PyObjC_CLOSURE_POOL
6#define PyObjC_CLOSURE_POOL
7
8extern ffi_closure* PyObjC_malloc_closure(void);
9extern int PyObjC_free_closure(ffi_closure* cl);
10
11
12#endif /* PyObjC_CLOSURE_POOL */
13