PageRenderTime 44ms CodeModel.GetById 29ms app.highlight 6ms RepoModel.GetById 0ms app.codeStats 1ms

/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>
 4typedef struct {
 5    PyObject_HEAD
 6    jit_context_t context;
 7} Context;
 8
 9PyTypeObject _jit_ContextType;
10
11Context * global_context;
12
13#endif