From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
# vim: set ts=2 sw=2 tw=0:
# vim: set expandtab:
use 5.010001;
use strict;
our $VERSION = '1.13.0.2'; # TRIAL VERSION
use Fcntl;
sub S_ISDIR {
shift;
Fcntl::S_ISDIR(@_);
}
sub S_ISREG {
shift;
Fcntl::S_ISREG(@_);
}
sub S_ISLNK {
shift;
Fcntl::S_ISLNK(@_);
}
sub S_ISBLK {
shift;
Fcntl::S_ISBLK(@_);
}
sub S_ISCHR {
shift;
Fcntl::S_ISCHR(@_);
}
sub S_ISFIFO {
shift;
Fcntl::S_ISFIFO(@_);
}
sub S_ISSOCK {
shift;
Fcntl::S_ISSOCK(@_);
}
sub S_IMODE {
shift;
Fcntl::S_IMODE(@_);
}
1;