Rename islhelper into _isl
[linpy.git] / pypol / static / gitweb.js
diff --git a/pypol/islhelper.c b/pypol/islhelper.c
deleted file mode 100644 (file)
index 38f249d..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#include <Python.h>
-#include <isl/space.h>
-
-static PyMethodDef islhelper_methods[] = {
-    {NULL, NULL, 0, NULL}
-};
-
-static struct PyModuleDef islhelpermodule = {
-    PyModuleDef_HEAD_INIT,
-    "islhelper",
-    NULL,
-    -1,
-    islhelper_methods
-};
-
-PyMODINIT_FUNC PyInit_islhelper(void) {
-    PyObject *m;
-    m = PyModule_Create(&islhelpermodule);
-    if (m == NULL)
-        return NULL;
-
-    PyModule_AddObject(m, "isl_dim_set", PyLong_FromLong(isl_dim_set));
-
-    return m;
-}