1#distutils: define_macros = DEFINE_NO_VALUE  DEFINE_WITH_VALUE=0
2
3cdef extern from "define_macro_helper.h" nogil:
4    int VAL;
5
6def test():
7    """
8    >>> test()
9    1
10    """
11    return VAL
12