summaryrefslogtreecommitdiff
path: root/tests/run/numpy_common.pxi
blob: 615bf701a702a7840c1b786c5359121b76b79f4d (plain)
1
2
3
4
5
6
7
8
9
10
# hack to avoid C compiler warnings about unused functions in the NumPy header files

from numpy cimport import_array  # , import_umath

cdef extern from *:
   bint FALSE "0"

if FALSE:
    import_array()
#    import_umath()