mercurial/mpatch.c
changeset 10282 08a0f04b56bd
parent 7036 bfad9865b1dc
child 11360 2ac98313b26c
--- a/mercurial/mpatch.c	Mon Jan 25 00:05:22 2010 -0600
+++ b/mercurial/mpatch.c	Mon Jan 25 00:05:27 2010 -0600
@@ -35,13 +35,13 @@
 #endif
 
 #ifdef _WIN32
-# ifdef _MSC_VER
+#ifdef _MSC_VER
 /* msvc 6.0 has problems */
-#  define inline __inline
+#define inline __inline
 typedef unsigned long uint32_t;
-# else
-#  include <stdint.h>
-# endif
+#else
+#include <stdint.h>
+#endif
 static uint32_t ntohl(uint32_t x)
 {
 	return ((x & 0x000000ffUL) << 24) |
@@ -51,13 +51,13 @@
 }
 #else
 /* not windows */
-# include <sys/types.h>
-# if defined __BEOS__ && !defined __HAIKU__
-#  include <ByteOrder.h>
-# else
-#  include <arpa/inet.h>
-# endif
-# include <inttypes.h>
+#include <sys/types.h>
+#if defined __BEOS__ && !defined __HAIKU__
+#include <ByteOrder.h>
+#else
+#include <arpa/inet.h>
+#endif
+#include <inttypes.h>
 #endif
 
 static char mpatch_doc[] = "Efficient binary patching.";