From: Evan Broder Date: Sun, 15 Mar 2009 22:07:29 +0000 (-0400) Subject: Specifically use size_t for the malloc import. X-Git-Tag: 0.1.0~61 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-afs.git/commitdiff_plain/54bbf99432cf865aac9acf7728c5d194309606b7 Specifically use size_t for the malloc import. Signed-off-by: Evan Broder --- diff --git a/afs/afs.pxd b/afs/afs.pxd index fab7019..b34283c 100644 --- a/afs/afs.pxd +++ b/afs/afs.pxd @@ -10,7 +10,7 @@ cdef extern from "string.h": void * memset(void *b, int c, size_t n) cdef extern from "stdlib.h": - void * malloc(int size) + void * malloc(size_t size) void free(void *) cdef extern from "netinet/in.h":