Mercurial > hg
changeset 510:7f3fc8fd427e
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-----
author | mpm@selenic.com |
---|---|
date | Tue, 28 Jun 2005 03:08:47 -0800 |
parents | 98a2935c3d6c |
children | 9f67222186bd |
files | mercurial/bdiff.c mercurial/mpatch.c |
diffstat | 2 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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