Use __inline instead of inline

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Use __inline instead of inline

This should let us compile bdiff.c on the other OS.

manifest hash: c1233bb3c7fc060e49dbd2597c122d903797db9e
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)

iD8DBQFCuu/WywK+sNU5EO8RAtqvAKC0d8Kv8He6xNCwmFnvKcff9BT4gACeLq7n
9JDFxYtWMrgjwlShfay1nL4=
=GDFt
-----END PGP SIGNATURE-----
This commit is contained in:
mpm@selenic.com 2005-06-23 09:22:30 -08:00
parent 6869b242bc
commit 82f810c4fa

View File

@ -42,7 +42,7 @@ struct hunklist {
struct hunk *base, *head;
};
static inline uint32_t rol32(uint32_t word, unsigned int shift)
static __inline uint32_t rol32(uint32_t word, unsigned int shift)
{
return (word << shift) | (word >> (32 - shift));
}