summaryrefslogtreecommitdiff
path: root/portato/eix/eix_utils.pxd
diff options
context:
space:
mode:
Diffstat (limited to 'portato/eix/eix_utils.pxd')
-rw-r--r--portato/eix/eix_utils.pxd17
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