diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-07-27 00:38:41 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-07-27 00:38:41 +0200 |
commit | 40344af86dbe9c7ad2f38b18f31f0f8a4917bda9 (patch) | |
tree | d5bcea29fcf380796fc627346115c81c78ad2926 /portato/eix/eix_utils.pxd | |
parent | e10334539d6b6c8c01d5936aa68e1b4b42f85963 (diff) | |
download | portato-40344af86dbe9c7ad2f38b18f31f0f8a4917bda9.tar.gz portato-40344af86dbe9c7ad2f38b18f31f0f8a4917bda9.tar.bz2 portato-40344af86dbe9c7ad2f38b18f31f0f8a4917bda9.zip |
Moved from Cython to normal Python
Diffstat (limited to 'portato/eix/eix_utils.pxd')
-rw-r--r-- | portato/eix/eix_utils.pxd | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/portato/eix/eix_utils.pxd b/portato/eix/eix_utils.pxd deleted file mode 100644 index 39f60a9..0000000 --- a/portato/eix/eix_utils.pxd +++ /dev/null @@ -1,17 +0,0 @@ -cdef extern from *: - ctypedef int size_t - -cdef extern from "errno.h": - int errno - -cdef extern from "string.h": - char* strerror (int errno) - size_t strlen (char* s) - char* strcpy (char* dest, char* src) - -cdef extern from "Python.h": - void* PyMem_Malloc (size_t n) - void PyMem_Free (void* p) - -cdef: - char* strdup (char* other) except NULL |