Added stdint.h include to fix build on Mac OS X Tiger [v10.4]
authorkyle@zeus.moffetthome.net
Fri, 24 Jun 2005 20:53:51 -0500
changeset 463 ea93402b81b9
parent 458 ff8fbf99cd64
child 464 50da4bb9cab6
Added stdint.h include to fix build on Mac OS X Tiger [v10.4]
mercurial/bdiff.c
mercurial/mpatch.c
--- a/mercurial/bdiff.c	Fri Jun 24 12:33:14 2005 -0800
+++ b/mercurial/bdiff.c	Fri Jun 24 20:53:51 2005 -0500
@@ -27,6 +27,7 @@
 #else
   #include <netinet/in.h>
   #include <sys/types.h>
+  #include <stdint.h>
 #endif
 
 struct line {
--- a/mercurial/mpatch.c	Fri Jun 24 12:33:14 2005 -0800
+++ b/mercurial/mpatch.c	Fri Jun 24 20:53:51 2005 -0500
@@ -38,6 +38,7 @@
 #else
   #include <netinet/in.h>
   #include <sys/types.h>
+  #include <stdint.h>
 #endif
 
 static char mpatch_doc[] = "Efficient binary patching.";