dbghelp: Replace inline static with static inline.

This commit is contained in:
Andrew Talbot 2007-03-19 19:44:25 +00:00 committed by Alexandre Julliard
parent d8b24e3664
commit 6a23efdaa2

View file

@ -41,14 +41,14 @@
WINE_DEFAULT_DEBUG_CHANNEL(dbghelp);
WINE_DECLARE_DEBUG_CHANNEL(dbghelp_symt);
inline static int cmp_addr(ULONG64 a1, ULONG64 a2)
static inline int cmp_addr(ULONG64 a1, ULONG64 a2)
{
if (a1 > a2) return 1;
if (a1 < a2) return -1;
return 0;
}
inline static int cmp_sorttab_addr(const struct module* module, int idx, ULONG64 addr)
static inline int cmp_sorttab_addr(const struct module* module, int idx, ULONG64 addr)
{
ULONG64 ref;