/src/context.h
https://bitbucket.org/mmarshall/libjit-python · C Header · 13 lines · 10 code · 3 blank · 0 comment · 0 complexity · 85584ccd3c9f6d596d897efbcbf7a2d4 MD5 · raw file
- #ifndef _JIT_CONTEXT_H_
- #define _JIT_CONTEXT_H_
- #include <jit/jit.h>
- typedef struct {
- PyObject_HEAD
- jit_context_t context;
- } Context;
- PyTypeObject _jit_ContextType;
- Context * global_context;
- #endif