blob: ec87da4aea9c0348d6ce7742c5915b88196e1303 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001package OpenSSL::Glob;
2
3use strict;
4use warnings;
5
6use File::Glob;
7
8use Exporter;
9use vars qw($VERSION @ISA @EXPORT);
10
11$VERSION = '0.1';
12@ISA = qw(Exporter);
13@EXPORT = qw(glob);
14
15sub glob {
16 goto &File::Glob::bsd_glob if $^O ne "VMS";
17 goto &CORE::glob;
18}
19
201;
21__END__