# HG changeset patch # User Thomas Arendsen Hein # Date 1151696506 -7200 # Node ID 860e9c83fc590cd8173bb888e3376db58bc2e7d1 # Parent a20877c8a3e257ae3503c7f4cbbccb92f93b5820 Include inttypes.h instead of stdint.h (fixes issue299) Many projects use inttypes.h, too. stdint.h isn't available everywhere, e.g. on some versions of Solaris, while inttypes.h is available everywhere where stdint.h is. diff -r a20877c8a3e2 -r 860e9c83fc59 mercurial/bdiff.c --- a/mercurial/bdiff.c Fri Jun 30 21:41:24 2006 +0200 +++ b/mercurial/bdiff.c Fri Jun 30 21:41:46 2006 +0200 @@ -38,7 +38,7 @@ #else #include #include -#include +#include #endif struct line { diff -r a20877c8a3e2 -r 860e9c83fc59 mercurial/mpatch.c --- a/mercurial/mpatch.c Fri Jun 30 21:41:24 2006 +0200 +++ b/mercurial/mpatch.c Fri Jun 30 21:41:46 2006 +0200 @@ -43,7 +43,7 @@ /* not windows */ # include # include -# include +# include #endif static char mpatch_doc[] = "Efficient binary patching.";