Back out changes which are breaking builds (at request of mccabe)

This commit is contained in:
hshaw 1998-04-30 08:18:42 +00:00
parent 214b354aee
commit 8a6fd4914b
2 changed files with 10 additions and 1 deletions

View File

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

View File

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