37 lines
661 B
Plaintext
37 lines
661 B
Plaintext
*** ut.c.orig Thu Oct 1 18:49:05 1998
|
|
--- ut.c Thu Oct 1 18:49:22 1998
|
|
***************
|
|
*** 24,30 ****
|
|
|
|
static char pattern [] = "00-Mon-1900 00:00:00";
|
|
|
|
! char *timestr (long tim)
|
|
{
|
|
struct tm *t = localtime (&tim);
|
|
register char *p = pattern;
|
|
--- 24,30 ----
|
|
|
|
static char pattern [] = "00-Mon-1900 00:00:00";
|
|
|
|
! char *timestr (time_t tim)
|
|
{
|
|
struct tm *t = localtime (&tim);
|
|
register char *p = pattern;
|
|
***************
|
|
*** 49,55 ****
|
|
return (p);
|
|
}
|
|
|
|
! long timeval (long tim)
|
|
{
|
|
struct tm *t = localtime (&tim);
|
|
|
|
--- 49,55 ----
|
|
return (p);
|
|
}
|
|
|
|
! long timeval (time_t tim)
|
|
{
|
|
struct tm *t = localtime (&tim);
|
|
|