fix #675: make 'by' a non-keyword also in .pyx files
[cython.git] / tests / compile / extern.pyx
1 # mode: compile
2
3 cdef extern int i
4 cdef extern char *s[]
5 cdef extern void spam(char c)
6
7 cdef extern int eggs():
8     pass
9
10 cdef int grail():
11     pass
12
13 grail()