#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
use v5.12.5;
our $VERSION = '1.15.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;