diff options
author | Dan Sugalski <dan@sidhe.org> | 1999-08-10 09:34:56 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-10 22:39:11 +0000 |
commit | d28f7c377ae191ca53d9157f124642cf323614a0 (patch) | |
tree | 6c1a399c1e250f23c69dd5af823906a52a0e01c7 /ext/POSIX | |
parent | 6da84e39ed5bfdbbe350321e38b2730554d2576c (diff) | |
download | perl-d28f7c377ae191ca53d9157f124642cf323614a0.tar.gz |
Patches needed to get _60 building with
To: vmsperl@perl.org, perl5-porters@perl.org,
sarathy@activestate.com, bailey@newman.upenn.edu
threads on VMS
Message-ID: <Pine.LNX.4.10.9908101631030.18266-100000@tuatha.sidhe.org>
p4raw-id: //depot/cfgperl@3955
Diffstat (limited to 'ext/POSIX')
-rw-r--r-- | ext/POSIX/POSIX.xs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs index 9cca0e3e1d..cc3f0c10d6 100644 --- a/ext/POSIX/POSIX.xs +++ b/ext/POSIX/POSIX.xs @@ -81,6 +81,7 @@ /* The non-POSIX CRTL times() has void return type, so we just get the current time directly */ clock_t vms_times(struct tms *PL_bufptr) { + dTHX; clock_t retval; /* Get wall time and convert to 10 ms intervals to * produce the return value that the POSIX standard expects */ |