~bzr-pqm/bzr/bzr.dev

4459.2.1 by Vincent Ladeuil
Use a consistent scheme for naming pyrex source files.
1
#ifndef _DIRSTATE_HELPERS_PYX_H
2
#define _DIRSTATE_HELPERS_PYX_H
2668.1.1 by John Arbash Meinel
(Lukáš Lalinský) Add a special header for intptr_t for MSVC which doesn't have it in the standard place
3
4
/* for intptr_t */
5
#ifdef _MSC_VER
6
#include <io.h>
7
#else
3899.1.1 by Andrew Bennetts
Fix compilation error in _dirstate_helpers_c on SunOS/Solaris. (Jari Aalto)
8
9
#if defined(__SVR4) && defined(__sun)
10
#include <inttypes.h>
11
#else
2668.1.1 by John Arbash Meinel
(Lukáš Lalinský) Add a special header for intptr_t for MSVC which doesn't have it in the standard place
12
#include <stdint.h>
13
#endif
14
15
#endif
3899.1.1 by Andrew Bennetts
Fix compilation error in _dirstate_helpers_c on SunOS/Solaris. (Jari Aalto)
16
17
#endif