mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
Back out changes which are breaking builds (at request of mccabe)
This commit is contained in:
parent
214b354aee
commit
8a6fd4914b
@ -6,10 +6,16 @@ s/include "prassert.h"/include "prlog.h"/g
|
||||
s/include "prprintf.h"/include "prprf.h"/g
|
||||
s/include "prtime.h"/include "prmjtime.h"/g
|
||||
s/PRTime/PRMJTime/g
|
||||
s/PR_ExplodeTime/PRMJ_ExplodeTime/g
|
||||
s/PR_ComputeTime/PRMJ_ComputeTime/g
|
||||
s/PR_ToLocal/PRMJ_ToLocal/g
|
||||
s/PR_ToGMT/PRMJ_ToGMT/g
|
||||
s/PR_DSTOffset/PRMJ_DSTOffset/g
|
||||
s/PR_FormatTimeUSEnglish/PRMJ_FormatTimeUSEnglish/g
|
||||
s/PR_FormatTime/PRMJ_FormatTime/g
|
||||
s/PR_USEC_PER_SEC/PRMJ_USEC_PER_SEC/g
|
||||
s/PR_USEC_PER_MSEC/PRMJ_USEC_PER_MSEC/g
|
||||
s/PR_gmtime/PRMJ_gmtime/g
|
||||
s/PR_Now/PRMJ_Now/g
|
||||
s/PR_LocalGMTDifference/PRMJ_LocalGMTDifference/g
|
||||
|
||||
|
@ -49,8 +49,11 @@ struct PRMJTime {
|
||||
};
|
||||
|
||||
/* Some handy constants */
|
||||
#define PRMJ_MSEC_PER_SEC 1000
|
||||
#define PRMJ_USEC_PER_SEC 1000000L
|
||||
#define PRMJ_USEC_PER_MSEC 1000L
|
||||
#define PRMJ_NSEC_PER_SEC 1000000000L
|
||||
#define PRMJ_USEC_PER_MSEC 1000
|
||||
#define PRMJ_NSEC_PER_MSEC 1000000L
|
||||
|
||||
/* Return the current local time in micro-seconds */
|
||||
extern PR_IMPLEMENT(PRInt64)
|
||||
|
Loading…
Reference in New Issue
Block a user