author | Matt Mackall <mpm@selenic.com> |
Tue, 18 Oct 2005 12:11:23 -0700 | |
changeset 1397 | 66fd3bc1cfcf |
parent 1396 | 8c3e2a254257 |
child 1398 | 3f76ac60130d |
mercurial/bdiff.c | file | annotate | diff | comparison | revisions |
--- a/mercurial/bdiff.c Tue Oct 18 00:45:27 2005 -0700 +++ b/mercurial/bdiff.c Tue Oct 18 12:11:23 2005 -0700 @@ -53,7 +53,7 @@ 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)); }