diff mercurial/parsers.c @ 29444:284d742e5611

internals: move the bitmanipulation routines into its own file This is to allow more flexibility with the C sources -- now the bitmanipulation routines can be safely imported without importing Python.h
author Maciej Fijalkowski <fijall@gmail.com>
date Mon, 06 Jun 2016 13:08:13 +0200
parents 507136150d2b
children 8abe9264c73a
line wrap: on
line diff
--- a/mercurial/parsers.c	Fri Jun 24 16:12:05 2016 +0100
+++ b/mercurial/parsers.c	Mon Jun 06 13:08:13 2016 +0200
@@ -13,6 +13,7 @@
 #include <string.h>
 
 #include "util.h"
+#include "bitmanipulation.h"
 
 static char *versionerrortext = "Python minor version mismatch";