VirtualBox

source: vbox/trunk/src/libs/openssl-3.3.2/util/perl/OpenSSL/Glob.pm@ 108206

Last change on this file since 108206 was 108206, checked in by vboxsync, 3 months ago

openssl-3.3.2: Exported all files to OSE and removed .scm-settings ​bugref:10757

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 274 bytes
Line 
1package 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__
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette