1N/A;# timelocal.pl
1N/A;#
1N/A;# Usage:
1N/A;# $time = timelocal($sec,$min,$hours,$mday,$mon,$year);
1N/A;# $time = timegm($sec,$min,$hours,$mday,$mon,$year);
1N/A
1N/A;# This file has been superseded by the Time::Local library module.
1N/A;# It is implemented as a call to that module for backwards compatibility
1N/A;# with code written for perl4; new code should use Time::Local directly.
1N/A
1N/A;# The current implementation shares with the original the questionable
1N/A;# behavior of defining the timelocal() and timegm() functions in the
1N/A;# namespace of whatever package was current when the first instance of
1N/A;# C<require 'timelocal.pl';> was executed in a program.
1N/A
1N/Ause Time::Local;
1N/A
1N/A*timelocal::cheat = \&Time::Local::cheat;