diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 2003-09-18 04:02:02 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-09-18 19:23:22 +0000 |
commit | a80d47c2f481402c370d7113267069d0c75ceeeb (patch) | |
tree | 5aab7d4f538adc19ec5563cf70b08e125c7b7688 /pp_sys.c | |
parent | 29ddfe354327d85ef66e9723b006d41eb553cd25 (diff) | |
download | perl-a80d47c2f481402c370d7113267069d0c75ceeeb.tar.gz |
-M -A -C broken
Message-ID: <20030918180202.GA21949@math.berkeley.edu>
(use stat.t instead of time.t)
p4raw-id: //depot/perl@21277
Diffstat (limited to 'pp_sys.c')
-rw-r--r-- | pp_sys.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3084,7 +3084,7 @@ PP(pp_ftmtime) dSP; dTARGET; if (result < 0) RETPUSHUNDEF; - PUSHn( (PL_basetime - PL_statcache.st_mtime) / 86400.0 ); + PUSHn( (((NV)PL_basetime - PL_statcache.st_mtime)) / 86400.0 ); RETURN; } @@ -3094,7 +3094,7 @@ PP(pp_ftatime) dSP; dTARGET; if (result < 0) RETPUSHUNDEF; - PUSHn( (PL_basetime - PL_statcache.st_atime) / 86400.0 ); + PUSHn( (((NV)PL_basetime - PL_statcache.st_atime)) / 86400.0 ); RETURN; } @@ -3104,7 +3104,7 @@ PP(pp_ftctime) dSP; dTARGET; if (result < 0) RETPUSHUNDEF; - PUSHn( (PL_basetime - PL_statcache.st_ctime) / 86400.0 ); + PUSHn( (((NV)PL_basetime - PL_statcache.st_ctime)) / 86400.0 ); RETURN; } |