Commit 637d6bd5 authored by Jeroen Demeyer's avatar Jeroen Demeyer

Use verbatim includes to simplify some tests.

parent 40f6de80
# mode: compile
cdef extern from "cnamespec.h":
cdef extern from *:
"""
int c_a, c_b;
"""
int a "c_a", b "c_b"
cdef struct foo "c_foo":
......
......@@ -26,7 +26,8 @@ def for_in_plain_ulong():
print j
cdef extern from "for_from_pyvar_loop_T601_extern_def.h":
cdef extern from *:
"""typedef unsigned long Ulong;"""
ctypedef unsigned long Ulong
cdef Ulong size():
......
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