ntdll: Mark monotonic_counter() as inline.

Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Huw Davies 2019-05-16 10:20:31 +01:00 committed by Alexandre Julliard
parent 6ebc9dd42f
commit 6b47a72e4a
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ static inline BOOL IsLeapYear(int Year)
}
/* return a monotonic time counter, in Win32 ticks */
static ULONGLONG monotonic_counter(void)
static inline ULONGLONG monotonic_counter(void)
{
struct timeval now;