• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <Python.h>
2 
3 extern PyObject* initModule(void);
4 
5 #ifndef _WIN32
6 #ifdef __cplusplus
7 extern "C"
8 #endif
9 __attribute__((visibility("default"))) PyObject* PyInit__C(void);
10 #endif
11 
PyInit__C(void)12 PyMODINIT_FUNC PyInit__C(void)
13 {
14   return initModule();
15 }
16