зеркало из https://github.com/mozilla/pjs.git
Use #elif instead of #else + #if.
This commit is contained in:
Родитель
1bdff18b94
Коммит
2ef25f3365
|
@ -68,14 +68,12 @@ _PR_MD_GET_INTERVAL()
|
|||
return (PRUint32)count.LowPart;
|
||||
} else
|
||||
#if defined(__MINGW32__)
|
||||
return time();
|
||||
#else
|
||||
#if defined(WIN16)
|
||||
return time();
|
||||
#elif defined(WIN16)
|
||||
return clock(); /* milliseconds since application start */
|
||||
#else
|
||||
return timeGetTime(); /* milliseconds since system start */
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
PRIntervalTime
|
||||
|
|
Загрузка…
Ссылка в новой задаче