diff mercurial/bdiff.c @ 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 e94cebc60d96
children b460a2fd8bb7 f2442a6a5893
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