More fiddling with uint32_t includes for extensions
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
More fiddling with uint32_t includes for extensions
manifest hash:
1ad16a0262e9bd2769e32c13c7fd0c7b0cd7dde7
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCwS+/ywK+sNU5EO8RAhK1AKCtF/57nKCc1AU+l0sR74kHhY1NCwCfSvQK
QQc5i8abuGkFpU5VUBJt5XQ=
=H+CX
-----END PGP SIGNATURE-----
--- a/mercurial/bdiff.c Tue Jun 28 02:48:21 2005 -0800
+++ b/mercurial/bdiff.c Tue Jun 28 03:08:47 2005 -0800
@@ -13,6 +13,7 @@
#include <stdlib.h>
#include <string.h>
#ifdef _WIN32
+#include <stdint.h>
static uint32_t htonl(uint32_t x)
{
return ((x & 0x000000ffUL) << 24) |
@@ -21,6 +22,7 @@
((x & 0xff000000UL) >> 24);
}
#else
+#include <sys/types.h>
#include <netinet/in.h>
#endif
--- a/mercurial/mpatch.c Tue Jun 28 02:48:21 2005 -0800
+++ b/mercurial/mpatch.c Tue Jun 28 03:08:47 2005 -0800
@@ -24,6 +24,7 @@
#include <stdlib.h>
#include <string.h>
#ifdef _WIN32
+#include <stdint.h>
static uint32_t ntohl(uint32_t x)
{
return ((x & 0x000000ffUL) << 24) |
@@ -32,6 +33,7 @@
((x & 0xff000000UL) >> 24);
}
#else
+#include <sys/types.h>
#include <netinet/in.h>
#endif