gzuncompress
|
Server IP : 172.19.0.2 / Your IP : 216.73.216.178 Web Server : Apache/2.4 System : Linux 880f91b28fd7 5.15.0-117-generic #127~20.04.1-Ubuntu SMP Thu Jul 11 15:36:12 UTC 2024 x86_64 User : tomlinde ( 155017) PHP Version : 5.6.40 Disable Function : dl, syslog, opcache_get_status MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/../lib/x86_64-linux-gnu/perl/5.30.0/File/../bits/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] | [ Lock Shell ] | [ Logout ] |
|---|
require '_h2ph_pre.ph';
no warnings qw(redefine misc);
if(!defined (&_SYS_WAIT_H) && !defined (&_STDLIB_H)) {
die("Never include <bits/waitstatus.h> directly; use <sys/wait.h> instead.");
}
unless(defined(&__WEXITSTATUS)) {
sub __WEXITSTATUS {
my($status) = @_;
eval q(((($status) & 0xff00) >> 8));
}
}
unless(defined(&__WTERMSIG)) {
sub __WTERMSIG {
my($status) = @_;
eval q((($status) & 0x7f));
}
}
unless(defined(&__WSTOPSIG)) {
sub __WSTOPSIG {
my($status) = @_;
eval q( &__WEXITSTATUS($status));
}
}
unless(defined(&__WIFEXITED)) {
sub __WIFEXITED {
my($status) = @_;
eval q(( &__WTERMSIG($status) == 0));
}
}
unless(defined(&__WIFSIGNALED)) {
sub __WIFSIGNALED {
my($status) = @_;
eval q((( ((($status) & 0x7f) + 1) >> 1) > 0));
}
}
unless(defined(&__WIFSTOPPED)) {
sub __WIFSTOPPED {
my($status) = @_;
eval q(((($status) & 0xff) == 0x7f));
}
}
if(defined(&WCONTINUED)) {
eval 'sub __WIFCONTINUED {
my($status) = @_;
eval q((($status) == &__W_CONTINUED));
}' unless defined(&__WIFCONTINUED);
}
unless(defined(&__WCOREDUMP)) {
sub __WCOREDUMP {
my($status) = @_;
eval q((($status) & &__WCOREFLAG));
}
}
unless(defined(&__W_EXITCODE)) {
sub __W_EXITCODE {
my($ret, $sig) = @_;
eval q((($ret) << 8| ($sig)));
}
}
unless(defined(&__W_STOPCODE)) {
sub __W_STOPCODE {
my($sig) = @_;
eval q((($sig) << 8| 0x7f));
}
}
eval 'sub __W_CONTINUED () {0xffff;}' unless defined(&__W_CONTINUED);
eval 'sub __WCOREFLAG () {0x80;}' unless defined(&__WCOREFLAG);
1;