Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/python-wasm
Path: blob/main/core/dylink/test/wasi/app.h
1393 views
1
#define EXPORTED_SYMBOL __attribute__((visibility("default")))
2
3
struct PyObjectX {
4
int thingy;
5
};
6
7
typedef struct PyObjectX PyObject;
8
9
extern
10
PyObject _Py_NoneStruct;
11
12
#define PyNone (&_Py_NoneStruct)
13
14
typedef int (*FUN_PTR)(int);
15
16