~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/python-compat.h

  • Committer: John Arbash Meinel
  • Date: 2010-08-23 19:10:35 UTC
  • mto: This revision was merged to the branch mainline in revision 5390.
  • Revision ID: john@arbash-meinel.com-20100823191035-57bojnmqw54nutsz
switch 'x += 1' to 'x = x + 1' to deal with brain-damaged old versions of pyrex.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
    #if !defined(S_ISLNK)
66
66
        #define S_ISLNK(mode) (0)
67
67
    #endif
 
68
    #define strtoll _strtoi64
 
69
    #define strtoull _strtoui64
68
70
#else /* Not win32 */
69
71
    /* For htonl */
70
72
    #include "arpa/inet.h"