1 #
2 # Copyright (c) 2002, 2008, Oracle and/or its affiliates. All rights reserved.
3 #
4
5 #
6 # File.pm contains wrappers for the exacct file manipulation routines.
7 #
8
9 require 5.8.4;
10 use strict;
11 use warnings;
12
13 package Sun::Solaris::Exacct::File;
14
15 our $VERSION = '1.3';
16 use XSLoader;
17 XSLoader::load(__PACKAGE__, $VERSION);
18
19 # @_Constants is set up by the XSUB bootstrap() function.
20 our (@EXPORT_OK, %EXPORT_TAGS, @_Constants);
21 @EXPORT_OK = @_Constants;
22 %EXPORT_TAGS = (CONSTANTS => \@_Constants, ALL => \@EXPORT_OK);
23
24 use base qw(Exporter);
25
26 #
27 # Extend the default Exporter::import to do optional inclusion of the
28 # Fcntl module.
29 #
|
1 #
2 # Copyright (c) 2002, 2008, Oracle and/or its affiliates. All rights reserved.
3 #
4
5 #
6 # File.pm contains wrappers for the exacct file manipulation routines.
7 #
8
9 require 5.0010;
10 use strict;
11 use warnings;
12
13 package Sun::Solaris::Exacct::File;
14
15 our $VERSION = '1.3';
16 use XSLoader;
17 XSLoader::load(__PACKAGE__, $VERSION);
18
19 # @_Constants is set up by the XSUB bootstrap() function.
20 our (@EXPORT_OK, %EXPORT_TAGS, @_Constants);
21 @EXPORT_OK = @_Constants;
22 %EXPORT_TAGS = (CONSTANTS => \@_Constants, ALL => \@EXPORT_OK);
23
24 use base qw(Exporter);
25
26 #
27 # Extend the default Exporter::import to do optional inclusion of the
28 # Fcntl module.
29 #
|