comparison mercurial/manifest.c @ 24441:e2ed40f0eb2e

manifest: use util.h to get Py_ssize_t
author Matt Mackall <mpm@selenic.com>
date Wed, 25 Mar 2015 14:13:11 -0500
parents d6dbe4d1c9bc
children 98042b0e19f9
comparison
equal deleted inserted replaced
24440:27ad6b91f5c2 24441:e2ed40f0eb2e
9 #include <Python.h> 9 #include <Python.h>
10 10
11 #include <assert.h> 11 #include <assert.h>
12 #include <string.h> 12 #include <string.h>
13 #include <stdlib.h> 13 #include <stdlib.h>
14
15 #include "util.h"
14 16
15 /* VC9 doesn't include bool and lacks stdbool.h based on my searching */ 17 /* VC9 doesn't include bool and lacks stdbool.h based on my searching */
16 #ifdef _MSC_VER 18 #ifdef _MSC_VER
17 #define true 1 19 #define true 1
18 #define false 0 20 #define false 0