Use #elif instead of #else + #if.

This commit is contained in:
wtc%netscape.com 1999-11-19 00:59:17 +00:00
parent 3c86483189
commit 1c85949664

View File

@ -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