Commit f2889b8c authored by Stefan Behnel's avatar Stefan Behnel

work around missing relative cimport support in cythonize()

parent 939f8f85
# 7.11 Localization <locale.h>
# deprecated cimport for backwards compatibility:
from .string cimport const_char
from libc.string cimport const_char
cdef extern from "locale.h" nogil:
......
......@@ -2,7 +2,7 @@
# deprecated cimports for backwards compatibility:
from .string cimport const_char, const_void
from libc.string cimport const_char, const_void
cdef extern from "stdio.h" nogil:
......
# 7.20 General utilities <stdlib.h>
# deprecated cimports for backwards compatibility:
from .string cimport const_char, const_void
from libc.string cimport const_char, const_void
cdef extern from "stdlib.h" nogil:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment