Commit 6d5ab790 authored by Stefan Behnel's avatar Stefan Behnel

fix type declarations in libc.string

parent 5de93050
......@@ -2,8 +2,8 @@
cdef extern from *:
ctypedef char const_char "const char"
ctypedef char const_schar "const signed char"
ctypedef char const_uchar "const unsigned char"
ctypedef signed char const_schar "const signed char"
ctypedef unsigned char const_uchar "const unsigned char"
ctypedef void const_void "const void"
cdef extern from "string.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