~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_dirstate_helpers_c.h

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-12-12 04:30:27 UTC
  • mfrom: (3899.1.1 solaris-ifdef)
  • Revision ID: pqm@pqm.ubuntu.com-20081212043027-n6zyyf2q7usjiyid
Fix compilation error in _dirstate_helpers_c on SunOS/Solaris. (Jari
        Aalto)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
#ifdef _MSC_VER
6
6
#include <io.h>
7
7
#else
 
8
 
 
9
#if defined(__SVR4) && defined(__sun)
 
10
#include <inttypes.h>
 
11
#else
8
12
#include <stdint.h>
9
13
#endif
10
14
 
11
15
#endif
 
16
 
 
17
#endif