use strict;
use vars qw(
- @EXPORT
+ @EXPORT_OK
+ %EXPORT_TAGS
$VERSION
);
# Export
#
use base 'Exporter';
-@EXPORT = qw(localtime);
+@EXPORT_OK = qw(localtime);
+%EXPORT_TAGS = (overwrite_internal_localtime => 'localtime'); # ;-)) Thanks to Calocybe
################################################################################
#