~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_btree_serializer_c.pyx

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-09-24 05:10:33 UTC
  • mfrom: (3731.1.1 python2.4)
  • Revision ID: pqm@pqm.ubuntu.com-20080924051033-89pfepccns2637pr
(robertc) Allow C extensions to build on python2.4 with older pyrex
        versions. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""Pyrex extensions to btree node parsing."""
19
19
 
 
20
#python2.4 support
 
21
cdef extern from "python-compat.h":
 
22
    pass
 
23
 
20
24
cdef extern from "stdlib.h":
21
25
    ctypedef unsigned size_t
22
26