Added stdint.h include to fix build on Mac OS X Tiger [v10.4]
author |
kyle@zeus.moffetthome.net |
date |
Fri, 24 Jun 2005 20:53:51 -0500 |
parents |
ff8fbf99cd64 |
children |
50da4bb9cab6 |
files |
mercurial/bdiff.c mercurial/mpatch.c |
diffstat |
2 files changed, 2 insertions(+), 0 deletions(-)
[+]
|
line diff
--- 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.";