Skip to content

Commit

Permalink
transition away from ironport's libc.pxd to the ones distributed with…
Browse files Browse the repository at this point in the history
… Cython
  • Loading branch information
samrushing committed Feb 1, 2013
1 parent deb6fd0 commit b40bedf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion coro/_coro.pxd
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# -*- Mode: Cython -*-

from cpython.ref cimport PyObject
from libc cimport intptr_t, memcpy, memset, off_t, time_t, timeval, uint64_t, uintptr_t

# Only import things from libc that are very common and have unique names.
from libc.stdint cimport intptr_t, uintptr_t, uint64_t
from libc.string cimport memcpy, memset
from posix.unistd cimport off_t
from xlibc.time cimport timeval

cdef extern from "Python.h":

Expand Down

0 comments on commit b40bedf

Please sign in to comment.