comparison mercurial/cext/revlog.c @ 34438:b90e8da190da

cext: reorder #include We mostly abide by this style. In one case, a blank line was inserted to prevent a local `#include "file"` from coming before a `#include <file>`. Differential Revision: https://phab.mercurial-scm.org/D908
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 02 Oct 2017 19:06:00 +0100
parents ce26a13869fb
children 7ed0750c71a1
comparison
equal deleted inserted replaced
34437:ce26a13869fb 34438:b90e8da190da
11 #include <assert.h> 11 #include <assert.h>
12 #include <ctype.h> 12 #include <ctype.h>
13 #include <stddef.h> 13 #include <stddef.h>
14 #include <string.h> 14 #include <string.h>
15 15
16 #include "bitmanipulation.h"
16 #include "charencode.h" 17 #include "charencode.h"
17 #include "util.h" 18 #include "util.h"
18 #include "bitmanipulation.h"
19 19
20 #ifdef IS_PY3K 20 #ifdef IS_PY3K
21 /* The mapping of Python types is meant to be temporary to get Python 21 /* The mapping of Python types is meant to be temporary to get Python
22 * 3 to compile. We should remove this once Python 3 support is fully 22 * 3 to compile. We should remove this once Python 3 support is fully
23 * supported and proper types are used in the extensions themselves. */ 23 * supported and proper types are used in the extensions themselves. */