~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_bencode_c.pyx

  • Committer: Jelmer Vernooij
  • Date: 2009-05-26 15:46:31 UTC
  • mto: (4398.5.1 bencode_serializer)
  • mto: This revision was merged to the branch mainline in revision 4410.
  • Revision ID: jelmer@samba.org-20090526154631-us647zq8jz7gk13z
Use global python-compat.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
cdef extern from "string.h":
43
43
    void *memcpy(void *dest, void *src, size_t count)
44
44
 
45
 
cdef extern from "_bencode_c.h":
 
45
cdef extern from "python-compat.h":
46
46
    int snprintf(char* buffer, size_t nsize, char* fmt, ...)
47
47
 
48
48