File: testzlib.c

package info (click to toggle)
python-auditwheel 5.3.0%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 816 kB
  • sloc: python: 4,270; ansic: 205; cpp: 58; makefile: 20; f90: 12
file content (46 lines) | stat: -rw-r--r-- 984 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <zlib.h>
#include <stdlib.h>
#include <Python.h>


static PyObject *
run(PyObject *self, PyObject *args)
{
    int res;

    (void)self;
    (void)args;

#if defined(__GLIBC_PREREQ) && __GLIBC_PREREQ(2, 24)
    res = gzflags() != 0;
#elif defined(__GLIBC_PREREQ) && __GLIBC_PREREQ(2, 17)
    /* blacklist ineffective on manylinux 2014 */
    res = 0;
#elif defined(__GLIBC_PREREQ)
    {
        void* memory = zcalloc(NULL, 1U, 1U);
        res = (memory != NULL);
        zcfree(NULL, memory);
    }
#else
    res = 0;
#endif
    return PyLong_FromLong(res);
}

/* Module initialization */
PyMODINIT_FUNC PyInit_testzlib(void)
{
    static PyMethodDef module_methods[] = {
        {"run", (PyCFunction)run, METH_NOARGS, "run."},
        {NULL}  /* Sentinel */
    };
    static struct PyModuleDef moduledef = {
        PyModuleDef_HEAD_INIT,
        "testzlib",
        "testzlib module",
        -1,
        module_methods,
    };
    return PyModule_Create(&moduledef);
}