aboutsummaryrefslogtreecommitdiff
blob: 21ecfe74041d6467ae5cf8cbf43a0a8f0251dcf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#
#===============================================================================
#
#         FILE:  POSIX.pm
#
#  DESCRIPTION:  
#
#        FILES:  ---
#         BUGS:  ---
#        NOTES:  ---
#       AUTHOR:  YOUR NAME (), 
#      COMPANY:  
#      VERSION:  1.0
#      CREATED:  04/28/2009 01:24:13 PM
#     REVISION:  ---
#===============================================================================

package TEST;

use strict;
use warnings;

BEGIN {
	use Exporter();
	our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
	
	$VERSION     = 1.00;

	@ISA         = qw(Exporter);
	@EXPORT      = qw(&strftime);
	%EXPORT_TAGS = ( );
	@EXPORT_OK   = qw();
}
our @EXPORT_OK;

sub strftime {
	return "01 Jan 2009";
}

1;