# HG changeset patch # User mpm@selenic.com # Date 2005-06-28 11:08:47 # Node ID 7f3fc8fd427ea05971988a285beb2370ddb41294 # Parent 98a2935c3d6c71b5b5478876b6bba3aa7b28372a 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----- diff --git a/mercurial/bdiff.c b/mercurial/bdiff.c --- a/mercurial/bdiff.c +++ b/mercurial/bdiff.c @@ -13,6 +13,7 @@ #include #include #ifdef _WIN32 +#include static uint32_t htonl(uint32_t x) { return ((x & 0x000000ffUL) << 24) | @@ -21,6 +22,7 @@ static uint32_t htonl(uint32_t x) ((x & 0xff000000UL) >> 24); } #else +#include #include #endif diff --git a/mercurial/mpatch.c b/mercurial/mpatch.c --- a/mercurial/mpatch.c +++ b/mercurial/mpatch.c @@ -24,6 +24,7 @@ #include #include #ifdef _WIN32 +#include static uint32_t ntohl(uint32_t x) { return ((x & 0x000000ffUL) << 24) | @@ -32,6 +33,7 @@ static uint32_t ntohl(uint32_t x) ((x & 0xff000000UL) >> 24); } #else +#include #include #endif