kernel32/tests: Replace inline static with static inline.

This commit is contained in:
Andrew Talbot 2007-03-21 18:02:05 +00:00 committed by Alexandre Julliard
parent 611acf5201
commit c261a75a6f
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ static inline WCHAR *strchrW( const WCHAR *str, WCHAR ch )
return NULL;
}
inline static int isdigitW( WCHAR wc )
static inline int isdigitW( WCHAR wc )
{
WORD type;
GetStringTypeW( CT_CTYPE1, &wc, 1, &type );