1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-21 21:49:10 +00:00

(svn r793) Merge INLINE -> inline replacement (revision 376)

This commit is contained in:
tron
2004-11-24 13:19:48 +00:00
parent 0ea87b6473
commit fca55e3741
9 changed files with 50 additions and 51 deletions

2
misc.c
View File

@@ -10,7 +10,7 @@ extern void InitNewsItemStructs();
byte _name_array[512][32];
static INLINE uint32 ROR(uint32 x, int n)
static inline uint32 ROR(uint32 x, int n)
{
return (x >> n) + (x << ((sizeof(x)*8)-n));
}