mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-19 01:10:22 +00:00
Use #elif instead of #else + #if.
This commit is contained in:
parent
3c86483189
commit
1c85949664
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user