/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

  1. #ifndef _JIT_CONTEXT_H_
  2. #define _JIT_CONTEXT_H_
  3. #include <jit/jit.h>
  4. typedef struct {
  5. PyObject_HEAD
  6. jit_context_t context;
  7. } Context;
  8. PyTypeObject _jit_ContextType;
  9. Context * global_context;
  10. #endif