1# hack to avoid C compiler warnings about unused functions in the NumPy header files
2
3from numpy cimport import_array  # , import_umath
4
5cdef extern from *:
6   bint FALSE "0"
7
8if FALSE:
9    import_array()
10#    import_umath()
11