comparison mercurial/cext/bdiff.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 3b88a7fa97d8
children b4fdc6177b29
comparison
equal deleted inserted replaced
34437:ce26a13869fb 34438:b90e8da190da
9 Based roughly on Python difflib 9 Based roughly on Python difflib
10 */ 10 */
11 11
12 #define PY_SSIZE_T_CLEAN 12 #define PY_SSIZE_T_CLEAN
13 #include <Python.h> 13 #include <Python.h>
14 #include <limits.h>
14 #include <stdlib.h> 15 #include <stdlib.h>
15 #include <string.h> 16 #include <string.h>
16 #include <limits.h>
17 17
18 #include "bdiff.h" 18 #include "bdiff.h"
19 #include "bitmanipulation.h" 19 #include "bitmanipulation.h"
20 #include "util.h" 20 #include "util.h"
21 21