diff options
author | jabdelmalek@google.com <jabdelmalek@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-07 10:02:38 +0000 |
---|---|---|
committer | jabdelmalek@google.com <jabdelmalek@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-07 10:02:38 +0000 |
commit | 10c123c1755e21c4503a2a7bd1ac9eeb89776311 (patch) | |
tree | c553b961848bf64f343508401cbd13070ec93f68 /third_party | |
parent | a346e5d85135c9c5261ad33a20293bf10ca74468 (diff) | |
download | chromium_src-10c123c1755e21c4503a2a7bd1ac9eeb89776311.zip chromium_src-10c123c1755e21c4503a2a7bd1ac9eeb89776311.tar.gz chromium_src-10c123c1755e21c4503a2a7bd1ac9eeb89776311.tar.bz2 |
Check in files that didn't get committed with previous checkin.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@504 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
196 files changed, 2982 insertions, 0 deletions
diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/CORE/libperl.a b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/CORE/libperl.a Binary files differnew file mode 100644 index 0000000..b15d511 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/CORE/libperl.a diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/CORE/libperl.dll.a b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/CORE/libperl.dll.a Binary files differnew file mode 100644 index 0000000..b796452 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/CORE/libperl.dll.a diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/DynaLoader/dl_expandspec.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/DynaLoader/dl_expandspec.al new file mode 100644 index 0000000..5709c48 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/DynaLoader/dl_expandspec.al @@ -0,0 +1,31 @@ +# NOTE: Derived from ../../lib/DynaLoader.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package DynaLoader; + +#line 320 "../../lib/DynaLoader.pm (autosplit into ../../lib/auto/DynaLoader/dl_expandspec.al)" +sub dl_expandspec { + my($spec) = @_; + # Optional function invoked if DynaLoader.pm sets $do_expand. + # Most systems do not require or use this function. + # Some systems may implement it in the dl_*.xs file in which case + # this autoload version will not be called but is harmless. + + # This function is designed to deal with systems which treat some + # 'filenames' in a special way. For example VMS 'Logical Names' + # (something like unix environment variables - but different). + # This function should recognise such names and expand them into + # full file paths. + # Must return undef if $spec is invalid or file does not exist. + + my $file = $spec; # default output to input + + + return undef unless -f $file; + + print STDERR "dl_expandspec($spec) => $file\n" if $dl_debug; + $file; +} + +# end of DynaLoader::dl_expandspec +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/DynaLoader/dl_find_symbol_anywhere.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/DynaLoader/dl_find_symbol_anywhere.al new file mode 100644 index 0000000..801bbe4 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/DynaLoader/dl_find_symbol_anywhere.al @@ -0,0 +1,19 @@ +# NOTE: Derived from ../../lib/DynaLoader.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package DynaLoader; + +#line 343 "../../lib/DynaLoader.pm (autosplit into ../../lib/auto/DynaLoader/dl_find_symbol_anywhere.al)" +sub dl_find_symbol_anywhere +{ + my $sym = shift; + my $libref; + foreach $libref (@dl_librefs) { + my $symref = dl_find_symbol($libref,$sym); + return $symref if $symref; + } + return undef; +} + +1; +# end of DynaLoader::dl_find_symbol_anywhere diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/DynaLoader/dl_findfile.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/DynaLoader/dl_findfile.al new file mode 100644 index 0000000..9a5800d --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/DynaLoader/dl_findfile.al @@ -0,0 +1,87 @@ +# NOTE: Derived from ../../lib/DynaLoader.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package DynaLoader; + +#line 240 "../../lib/DynaLoader.pm (autosplit into ../../lib/auto/DynaLoader/dl_findfile.al)" +sub dl_findfile { + # Read ext/DynaLoader/DynaLoader.doc for detailed information. + # This function does not automatically consider the architecture + # or the perl library auto directories. + my (@args) = @_; + my (@dirs, $dir); # which directories to search + my (@found); # full paths to real files we have found + #my $dl_ext= 'dll'; # $Config::Config{'dlext'} suffix for perl extensions + #my $dl_so = 'dll'; # $Config::Config{'so'} suffix for shared libraries + + print STDERR "dl_findfile(@args)\n" if $dl_debug; + + # accumulate directories but process files as they appear + arg: foreach(@args) { + # Special fast case: full filepath requires no search + + + + if (m:/: && -f $_) { + push(@found,$_); + last arg unless wantarray; + next; + } + + + # Deal with directories first: + # Using a -L prefix is the preferred option (faster and more robust) + if (m:^-L:) { s/^-L//; push(@dirs, $_); next; } + + + + # Otherwise we try to try to spot directories by a heuristic + # (this is a more complicated issue than it first appears) + if (m:/: && -d $_) { push(@dirs, $_); next; } + + + + # Only files should get this far... + my(@names, $name); # what filenames to look for + if (m:-l: ) { # convert -lname to appropriate library name + s/-l//; + push(@names,"lib$_.$dl_so"); + push(@names,"lib$_.a"); + } else { # Umm, a bare name. Try various alternatives: + # these should be ordered with the most likely first + push(@names,"$_.$dl_dlext") unless m/\.$dl_dlext$/o; + push(@names,"$_.$dl_so") unless m/\.$dl_so$/o; + push(@names,"cyg$_.") if !m:/: and $^O eq 'cygwin'; + push(@names,"lib$_.$dl_so") unless m:/:; + push(@names,"$_.a") if !m/\.a$/ and $dlsrc eq "dl_dld.xs"; + push(@names, $_); + } + my $dirsep = '/'; + + foreach $dir (@dirs, @dl_library_path) { + next unless -d $dir; + + foreach $name (@names) { + my($file) = "$dir$dirsep$name"; + print STDERR " checking in $dir for $name\n" if $dl_debug; + $file = ($do_expand) ? dl_expandspec($file) : (-f $file && $file); + #$file = _check_file($file); + if ($file) { + push(@found, $file); + next arg; # no need to look any further + } + } + } + } + if ($dl_debug) { + foreach(@dirs) { + print STDERR " dl_findfile ignored non-existent directory: $_\n" unless -d $_; + } + print STDERR "dl_findfile found: @found\n"; + } + return $found[0] unless wantarray; + @found; +} + +# end of DynaLoader::dl_findfile +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigAction/flags.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigAction/flags.al new file mode 100644 index 0000000..37a0761 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigAction/flags.al @@ -0,0 +1,9 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigAction; + +#line 986 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigAction/flags.al)" +sub flags { $_[0]->{FLAGS} = $_[1] if @_ > 1; $_[0]->{FLAGS} }; +# end of POSIX::SigAction::flags +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigAction/handler.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigAction/handler.al new file mode 100644 index 0000000..4061f83 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigAction/handler.al @@ -0,0 +1,9 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigAction; + +#line 984 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigAction/handler.al)" +sub handler { $_[0]->{HANDLER} = $_[1] if @_ > 1; $_[0]->{HANDLER} }; +# end of POSIX::SigAction::handler +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigAction/mask.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigAction/mask.al new file mode 100644 index 0000000..37a227d --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigAction/mask.al @@ -0,0 +1,9 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigAction; + +#line 985 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigAction/mask.al)" +sub mask { $_[0]->{MASK} = $_[1] if @_ > 1; $_[0]->{MASK} }; +# end of POSIX::SigAction::mask +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigAction/new.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigAction/new.al new file mode 100644 index 0000000..29b196b --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigAction/new.al @@ -0,0 +1,11 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigAction; + +#line 981 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigAction/new.al)" +package POSIX::SigAction; + +sub new { bless {HANDLER => $_[1], MASK => $_[2], FLAGS => $_[3] || 0, SAFE => 0}, $_[0] } +# end of POSIX::SigAction::new +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigAction/safe.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigAction/safe.al new file mode 100644 index 0000000..a6f144c --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigAction/safe.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigAction; + +#line 987 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigAction/safe.al)" +sub safe { $_[0]->{SAFE} = $_[1] if @_ > 1; $_[0]->{SAFE} }; + +package POSIX::SigRt; + + +# end of POSIX::SigRt::safe +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/CLEAR.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/CLEAR.al new file mode 100644 index 0000000..40df57e --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/CLEAR.al @@ -0,0 +1,9 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigRt; + +#line 1041 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigRt/CLEAR.al)" +sub CLEAR { &_exist; delete @SIG{ &POSIX::SIGRTMIN .. &POSIX::SIGRTMAX } } +# end of POSIX::SigRt::CLEAR +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/DELETE.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/DELETE.al new file mode 100644 index 0000000..f0d2002 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/DELETE.al @@ -0,0 +1,9 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigRt; + +#line 1040 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigRt/DELETE.al)" +sub DELETE { delete $SIG{ &_check } } +# end of POSIX::SigRt::DELETE +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/EXISTS.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/EXISTS.al new file mode 100644 index 0000000..0983fed --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/EXISTS.al @@ -0,0 +1,9 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigRt; + +#line 1034 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigRt/EXISTS.al)" +sub EXISTS { &_exist } +# end of POSIX::SigRt::EXISTS +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/FETCH.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/FETCH.al new file mode 100644 index 0000000..8e56e80 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/FETCH.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigRt; + +#line 1035 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigRt/FETCH.al)" +sub FETCH { my $rtsig = &_check; + my $oa = POSIX::SigAction->new(); + POSIX::sigaction($rtsig, undef, $oa); + return $oa->{HANDLER} } +# end of POSIX::SigRt::FETCH +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/SCALAR.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/SCALAR.al new file mode 100644 index 0000000..448f42d --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/SCALAR.al @@ -0,0 +1,9 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigRt; + +#line 1042 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigRt/SCALAR.al)" +sub SCALAR { &_croak; $_sigrtn + 1 } +1; +# end of POSIX::SigRt::SCALAR diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/STORE.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/STORE.al new file mode 100644 index 0000000..38399c6 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/STORE.al @@ -0,0 +1,9 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigRt; + +#line 1039 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigRt/STORE.al)" +sub STORE { my $rtsig = &_check; new($rtsig, $_[2], $SIGACTION_FLAGS) } +# end of POSIX::SigRt::STORE +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/_check.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/_check.al new file mode 100644 index 0000000..0ad2578 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/_check.al @@ -0,0 +1,15 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigRt; + +#line 1018 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigRt/_check.al)" +sub _check { + my ($rtsig, $ok) = &_exist; + die "No POSIX::SigRt signal $_[1] (valid range SIGRTMIN..SIGRTMAX, or $_SIGRTMIN..$_SIGRTMAX)" + unless $ok; + return $rtsig; +} + +# end of POSIX::SigRt::_check +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/_croak.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/_croak.al new file mode 100644 index 0000000..a5744c3 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/_croak.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigRt; + +#line 998 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigRt/_croak.al)" +sub _croak { + &_init unless defined $_sigrtn; + die "POSIX::SigRt not available" unless defined $_sigrtn && $_sigrtn > 0; +} + +# end of POSIX::SigRt::_croak +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/_exist.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/_exist.al new file mode 100644 index 0000000..b8b9a49 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/_exist.al @@ -0,0 +1,14 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigRt; + +#line 1012 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigRt/_exist.al)" +sub _exist { + my $rtsig = _getsig($_[1]); + my $ok = $rtsig >= $_SIGRTMIN && $rtsig <= $_SIGRTMAX; + ($rtsig, $ok); +} + +# end of POSIX::SigRt::_exist +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/_getsig.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/_getsig.al new file mode 100644 index 0000000..93dd946 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/_getsig.al @@ -0,0 +1,17 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigRt; + +#line 1003 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigRt/_getsig.al)" +sub _getsig { + &_croak; + my $rtsig = $_[0]; + # Allow (SIGRT)?MIN( + n)?, a common idiom when doing these things in C. + $rtsig = $_SIGRTMIN + ($1 || 0) + if $rtsig =~ /^(?:(?:SIG)?RT)?MIN(\s*\+\s*(\d+))?$/; + return $rtsig; +} + +# end of POSIX::SigRt::_getsig +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/_init.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/_init.al new file mode 100644 index 0000000..d57583a --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/_init.al @@ -0,0 +1,14 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigRt; + +#line 992 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigRt/_init.al)" +sub _init { + $_SIGRTMIN = &POSIX::SIGRTMIN; + $_SIGRTMAX = &POSIX::SIGRTMAX; + $_sigrtn = $_SIGRTMAX - $_SIGRTMIN; +} + +# end of POSIX::SigRt::_init +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/new.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/new.al new file mode 100644 index 0000000..0be1621 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/SigRt/new.al @@ -0,0 +1,17 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX::SigRt; + +#line 1025 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/SigRt/new.al)" +sub new { + my ($rtsig, $handler, $flags) = @_; + my $sigset = POSIX::SigSet->new($rtsig); + my $sigact = POSIX::SigAction->new($handler, + $sigset, + $flags); + POSIX::sigaction($rtsig, $sigact); +} + +# end of POSIX::SigRt::new +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/abs.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/abs.al new file mode 100644 index 0000000..9dbe50d --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/abs.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 414 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/abs.al)" +sub abs { + usage "abs(x)" if @_ != 1; + CORE::abs($_[0]); +} + +# end of POSIX::abs +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/alarm.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/alarm.al new file mode 100644 index 0000000..9cde499 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/alarm.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 631 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/alarm.al)" +sub alarm { + usage "alarm(seconds)" if @_ != 1; + CORE::alarm($_[0]); +} + +# end of POSIX::alarm +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/assert.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/assert.al new file mode 100644 index 0000000..d7e63d3 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/assert.al @@ -0,0 +1,15 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 96 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/assert.al)" +sub assert { + usage "assert(expr)" if @_ != 1; + if (!$_[0]) { + croak "Assertion failed"; + } +} + +# end of POSIX::assert +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/atan2.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/atan2.al new file mode 100644 index 0000000..3022fb9 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/atan2.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 161 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/atan2.al)" +sub atan2 { + usage "atan2(x,y)" if @_ != 2; + CORE::atan2($_[0], $_[1]); +} + +# end of POSIX::atan2 +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/atexit.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/atexit.al new file mode 100644 index 0000000..f998fff --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/atexit.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 419 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/atexit.al)" +sub atexit { + unimpl "atexit() is C-specific: use END {} instead"; +} + +# end of POSIX::atexit +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/atof.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/atof.al new file mode 100644 index 0000000..270d7f7 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/atof.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 423 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/atof.al)" +sub atof { + unimpl "atof() is C-specific, stopped"; +} + +# end of POSIX::atof +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/atoi.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/atoi.al new file mode 100644 index 0000000..4f5a0bd --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/atoi.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 427 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/atoi.al)" +sub atoi { + unimpl "atoi() is C-specific, stopped"; +} + +# end of POSIX::atoi +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/atol.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/atol.al new file mode 100644 index 0000000..2399072 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/atol.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 431 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/atol.al)" +sub atol { + unimpl "atol() is C-specific, stopped"; +} + +# end of POSIX::atol +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/bsearch.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/bsearch.al new file mode 100644 index 0000000..e634714 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/bsearch.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 435 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/bsearch.al)" +sub bsearch { + unimpl "bsearch() not supplied"; +} + +# end of POSIX::bsearch +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/calloc.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/calloc.al new file mode 100644 index 0000000..77d8178 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/calloc.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 439 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/calloc.al)" +sub calloc { + unimpl "calloc() is C-specific, stopped"; +} + +# end of POSIX::calloc +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/chdir.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/chdir.al new file mode 100644 index 0000000..9448c74 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/chdir.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 636 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/chdir.al)" +sub chdir { + usage "chdir(directory)" if @_ != 1; + CORE::chdir($_[0]); +} + +# end of POSIX::chdir +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/chmod.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/chmod.al new file mode 100644 index 0000000..ee92924 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/chmod.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 577 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/chmod.al)" +sub chmod { + usage "chmod(mode, filename)" if @_ != 2; + CORE::chmod($_[0], $_[1]); +} + +# end of POSIX::chmod +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/chown.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/chown.al new file mode 100644 index 0000000..f336519 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/chown.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 641 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/chown.al)" +sub chown { + usage "chown(uid, gid, filename)" if @_ != 3; + CORE::chown($_[0], $_[1], $_[2]); +} + +# end of POSIX::chown +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/clearerr.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/clearerr.al new file mode 100644 index 0000000..f4e1762 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/clearerr.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 241 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/clearerr.al)" +sub clearerr { + redef "IO::Handle::clearerr()"; +} + +# end of POSIX::clearerr +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/closedir.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/closedir.al new file mode 100644 index 0000000..4e7866b --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/closedir.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 113 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/closedir.al)" +sub closedir { + usage "closedir(dirhandle)" if @_ != 1; + CORE::closedir($_[0]); +} + +# end of POSIX::closedir +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/cos.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/cos.al new file mode 100644 index 0000000..b4578a7 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/cos.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 166 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/cos.al)" +sub cos { + usage "cos(x)" if @_ != 1; + CORE::cos($_[0]); +} + +# end of POSIX::cos +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/creat.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/creat.al new file mode 100644 index 0000000..25b29f0 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/creat.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 141 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/creat.al)" +sub creat { + usage "creat(filename, mode)" if @_ != 2; + &open($_[0], &O_WRONLY | &O_CREAT | &O_TRUNC, $_[1]); +} + +# end of POSIX::creat +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/div.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/div.al new file mode 100644 index 0000000..e54b1c8 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/div.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 443 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/div.al)" +sub div { + unimpl "div() is C-specific, use /, % and int instead"; +} + +# end of POSIX::div +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/errno.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/errno.al new file mode 100644 index 0000000..845eaa7 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/errno.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 136 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/errno.al)" +sub errno { + usage "errno()" if @_ != 0; + $! + 0; +} + +# end of POSIX::errno +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execl.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execl.al new file mode 100644 index 0000000..4d3a7ea --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execl.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 646 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/execl.al)" +sub execl { + unimpl "execl() is C-specific, stopped"; +} + +# end of POSIX::execl +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execle.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execle.al new file mode 100644 index 0000000..e332345 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execle.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 650 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/execle.al)" +sub execle { + unimpl "execle() is C-specific, stopped"; +} + +# end of POSIX::execle +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execlp.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execlp.al new file mode 100644 index 0000000..df3490d4 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execlp.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 654 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/execlp.al)" +sub execlp { + unimpl "execlp() is C-specific, stopped"; +} + +# end of POSIX::execlp +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execv.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execv.al new file mode 100644 index 0000000..4e39758 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execv.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 658 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/execv.al)" +sub execv { + unimpl "execv() is C-specific, stopped"; +} + +# end of POSIX::execv +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execve.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execve.al new file mode 100644 index 0000000..f843e11 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execve.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 662 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/execve.al)" +sub execve { + unimpl "execve() is C-specific, stopped"; +} + +# end of POSIX::execve +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execvp.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execvp.al new file mode 100644 index 0000000..43fbcef --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/execvp.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 666 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/execvp.al)" +sub execvp { + unimpl "execvp() is C-specific, stopped"; +} + +# end of POSIX::execvp +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/exit.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/exit.al new file mode 100644 index 0000000..7a06bd8 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/exit.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 447 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/exit.al)" +sub exit { + usage "exit(status)" if @_ != 1; + CORE::exit($_[0]); +} + +# end of POSIX::exit +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/exp.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/exp.al new file mode 100644 index 0000000..a0dd4cc --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/exp.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 171 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/exp.al)" +sub exp { + usage "exp(x)" if @_ != 1; + CORE::exp($_[0]); +} + +# end of POSIX::exp +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fabs.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fabs.al new file mode 100644 index 0000000..5416840 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fabs.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 176 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fabs.al)" +sub fabs { + usage "fabs(x)" if @_ != 1; + CORE::abs($_[0]); +} + +# end of POSIX::fabs +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fclose.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fclose.al new file mode 100644 index 0000000..904ea9b --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fclose.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 245 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fclose.al)" +sub fclose { + redef "IO::Handle::close()"; +} + +# end of POSIX::fclose +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fcntl.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fcntl.al new file mode 100644 index 0000000..5337a8a --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fcntl.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 146 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fcntl.al)" +sub fcntl { + usage "fcntl(filehandle, cmd, arg)" if @_ != 3; + CORE::fcntl($_[0], $_[1], $_[2]); +} + +# end of POSIX::fcntl +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fdopen.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fdopen.al new file mode 100644 index 0000000..142422d --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fdopen.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 249 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fdopen.al)" +sub fdopen { + redef "IO::Handle::new_from_fd()"; +} + +# end of POSIX::fdopen +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/feof.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/feof.al new file mode 100644 index 0000000..1b3de71 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/feof.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 253 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/feof.al)" +sub feof { + redef "IO::Handle::eof()"; +} + +# end of POSIX::feof +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/ferror.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/ferror.al new file mode 100644 index 0000000..502e535 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/ferror.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 305 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/ferror.al)" +sub ferror { + redef "IO::Handle::error()"; +} + +# end of POSIX::ferror +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fflush.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fflush.al new file mode 100644 index 0000000..68b28b4 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fflush.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 309 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fflush.al)" +sub fflush { + redef "IO::Handle::flush()"; +} + +# end of POSIX::fflush +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fgetc.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fgetc.al new file mode 100644 index 0000000..f362225 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fgetc.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 257 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fgetc.al)" +sub fgetc { + redef "IO::Handle::getc()"; +} + +# end of POSIX::fgetc +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fgetpos.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fgetpos.al new file mode 100644 index 0000000..18b4e7d --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fgetpos.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 313 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fgetpos.al)" +sub fgetpos { + redef "IO::Seekable::getpos()"; +} + +# end of POSIX::fgetpos +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fgets.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fgets.al new file mode 100644 index 0000000..4b11baa --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fgets.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 261 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fgets.al)" +sub fgets { + redef "IO::Handle::gets()"; +} + +# end of POSIX::fgets +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fileno.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fileno.al new file mode 100644 index 0000000..ad183b8 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fileno.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 265 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fileno.al)" +sub fileno { + redef "IO::Handle::fileno()"; +} + +# end of POSIX::fileno +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fopen.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fopen.al new file mode 100644 index 0000000..1059c8a --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fopen.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 269 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fopen.al)" +sub fopen { + redef "IO::File::open()"; +} + +# end of POSIX::fopen +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fork.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fork.al new file mode 100644 index 0000000..31c10b4 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fork.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 670 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fork.al)" +sub fork { + usage "fork()" if @_ != 0; + CORE::fork; +} + +# end of POSIX::fork +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fprintf.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fprintf.al new file mode 100644 index 0000000..11530a4 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fprintf.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 273 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fprintf.al)" +sub fprintf { + unimpl "fprintf() is C-specific--use printf instead"; +} + +# end of POSIX::fprintf +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fputc.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fputc.al new file mode 100644 index 0000000..10e16ad --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fputc.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 277 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fputc.al)" +sub fputc { + unimpl "fputc() is C-specific--use print instead"; +} + +# end of POSIX::fputc +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fputs.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fputs.al new file mode 100644 index 0000000..8fa940b --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fputs.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 281 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fputs.al)" +sub fputs { + unimpl "fputs() is C-specific--use print instead"; +} + +# end of POSIX::fputs +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fread.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fread.al new file mode 100644 index 0000000..962d474 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fread.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 285 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fread.al)" +sub fread { + unimpl "fread() is C-specific--use read instead"; +} + +# end of POSIX::fread +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/free.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/free.al new file mode 100644 index 0000000..e6060ee --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/free.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 452 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/free.al)" +sub free { + unimpl "free() is C-specific, stopped"; +} + +# end of POSIX::free +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/freopen.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/freopen.al new file mode 100644 index 0000000..386d5f0 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/freopen.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 289 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/freopen.al)" +sub freopen { + unimpl "freopen() is C-specific--use open instead"; +} + +# end of POSIX::freopen +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fscanf.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fscanf.al new file mode 100644 index 0000000..95c11f1 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fscanf.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 293 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fscanf.al)" +sub fscanf { + unimpl "fscanf() is C-specific--use <> and regular expressions instead"; +} + +# end of POSIX::fscanf +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fseek.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fseek.al new file mode 100644 index 0000000..fdff061 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fseek.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 297 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fseek.al)" +sub fseek { + redef "IO::Seekable::seek()"; +} + +# end of POSIX::fseek +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fsetpos.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fsetpos.al new file mode 100644 index 0000000..37759a0 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fsetpos.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 317 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fsetpos.al)" +sub fsetpos { + redef "IO::Seekable::setpos()"; +} + +# end of POSIX::fsetpos +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fstat.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fstat.al new file mode 100644 index 0000000..988d93c --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fstat.al @@ -0,0 +1,17 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 582 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fstat.al)" +sub fstat { + usage "fstat(fd)" if @_ != 1; + local *TMP; + CORE::open(TMP, "<&$_[0]"); # Gross. + my @l = CORE::stat(TMP); + CORE::close(TMP); + @l; +} + +# end of POSIX::fstat +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fsync.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fsync.al new file mode 100644 index 0000000..24bfd00 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fsync.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 301 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fsync.al)" +sub fsync { + redef "IO::Handle::sync()"; +} + +# end of POSIX::fsync +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/ftell.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/ftell.al new file mode 100644 index 0000000..9396a1a --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/ftell.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 321 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/ftell.al)" +sub ftell { + redef "IO::Seekable::tell()"; +} + +# end of POSIX::ftell +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fwrite.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fwrite.al new file mode 100644 index 0000000..4499a21 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/fwrite.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 325 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/fwrite.al)" +sub fwrite { + unimpl "fwrite() is C-specific--use print instead"; +} + +# end of POSIX::fwrite +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getc.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getc.al new file mode 100644 index 0000000..e59482f --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getc.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 329 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/getc.al)" +sub getc { + usage "getc(handle)" if @_ != 1; + CORE::getc($_[0]); +} + +# end of POSIX::getc +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getchar.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getchar.al new file mode 100644 index 0000000..cf1adc0 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getchar.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 334 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/getchar.al)" +sub getchar { + usage "getchar()" if @_ != 0; + CORE::getc(STDIN); +} + +# end of POSIX::getchar +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getegid.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getegid.al new file mode 100644 index 0000000..39bd4b2 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getegid.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 675 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/getegid.al)" +sub getegid { + usage "getegid()" if @_ != 0; + $) + 0; +} + +# end of POSIX::getegid +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getenv.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getenv.al new file mode 100644 index 0000000..9d1b3c5 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getenv.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 456 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/getenv.al)" +sub getenv { + usage "getenv(name)" if @_ != 1; + $ENV{$_[0]}; +} + +# end of POSIX::getenv +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/geteuid.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/geteuid.al new file mode 100644 index 0000000..b6904e9 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/geteuid.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 680 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/geteuid.al)" +sub geteuid { + usage "geteuid()" if @_ != 0; + $> + 0; +} + +# end of POSIX::geteuid +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getgid.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getgid.al new file mode 100644 index 0000000..9d27cf6 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getgid.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 685 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/getgid.al)" +sub getgid { + usage "getgid()" if @_ != 0; + $( + 0; +} + +# end of POSIX::getgid +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getgrgid.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getgrgid.al new file mode 100644 index 0000000..0c41881 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getgrgid.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 151 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/getgrgid.al)" +sub getgrgid { + usage "getgrgid(gid)" if @_ != 1; + CORE::getgrgid($_[0]); +} + +# end of POSIX::getgrgid +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getgrnam.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getgrnam.al new file mode 100644 index 0000000..b08a31b --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getgrnam.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 156 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/getgrnam.al)" +sub getgrnam { + usage "getgrnam(name)" if @_ != 1; + CORE::getgrnam($_[0]); +} + +# end of POSIX::getgrnam +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getgroups.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getgroups.al new file mode 100644 index 0000000..2c97380 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getgroups.al @@ -0,0 +1,14 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 690 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/getgroups.al)" +sub getgroups { + usage "getgroups()" if @_ != 0; + my %seen; + grep(!$seen{$_}++, split(' ', $) )); +} + +# end of POSIX::getgroups +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getlogin.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getlogin.al new file mode 100644 index 0000000..f01ae6b --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getlogin.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 696 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/getlogin.al)" +sub getlogin { + usage "getlogin()" if @_ != 0; + CORE::getlogin(); +} + +# end of POSIX::getlogin +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getpgrp.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getpgrp.al new file mode 100644 index 0000000..c53d80c --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getpgrp.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 701 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/getpgrp.al)" +sub getpgrp { + usage "getpgrp()" if @_ != 0; + CORE::getpgrp; +} + +# end of POSIX::getpgrp +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getpid.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getpid.al new file mode 100644 index 0000000..643ee91 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getpid.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 706 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/getpid.al)" +sub getpid { + usage "getpid()" if @_ != 0; + $$; +} + +# end of POSIX::getpid +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getppid.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getppid.al new file mode 100644 index 0000000..4855cbf --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getppid.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 711 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/getppid.al)" +sub getppid { + usage "getppid()" if @_ != 0; + CORE::getppid; +} + +# end of POSIX::getppid +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getpwnam.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getpwnam.al new file mode 100644 index 0000000..f00a1bc --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getpwnam.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 201 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/getpwnam.al)" +sub getpwnam { + usage "getpwnam(name)" if @_ != 1; + CORE::getpwnam($_[0]); +} + +# end of POSIX::getpwnam +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getpwuid.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getpwuid.al new file mode 100644 index 0000000..7439073 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getpwuid.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 206 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/getpwuid.al)" +sub getpwuid { + usage "getpwuid(uid)" if @_ != 1; + CORE::getpwuid($_[0]); +} + +# end of POSIX::getpwuid +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/gets.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/gets.al new file mode 100644 index 0000000..dd658e4 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/gets.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 339 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/gets.al)" +sub gets { + usage "gets()" if @_ != 0; + scalar <STDIN>; +} + +# end of POSIX::gets +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getuid.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getuid.al new file mode 100644 index 0000000..d233dbf --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/getuid.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 716 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/getuid.al)" +sub getuid { + usage "getuid()" if @_ != 0; + $<; +} + +# end of POSIX::getuid +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/gmtime.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/gmtime.al new file mode 100644 index 0000000..7ceec3d --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/gmtime.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 616 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/gmtime.al)" +sub gmtime { + usage "gmtime(time)" if @_ != 1; + CORE::gmtime($_[0]); +} + +# end of POSIX::gmtime +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/isatty.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/isatty.al new file mode 100644 index 0000000..bccab1a --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/isatty.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 721 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/isatty.al)" +sub isatty { + usage "isatty(filehandle)" if @_ != 1; + -t $_[0]; +} + +# end of POSIX::isatty +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/kill.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/kill.al new file mode 100644 index 0000000..313f68c --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/kill.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 227 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/kill.al)" +sub kill { + usage "kill(pid, sig)" if @_ != 2; + CORE::kill $_[1], $_[0]; +} + +# end of POSIX::kill +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/labs.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/labs.al new file mode 100644 index 0000000..430f27ed --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/labs.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 461 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/labs.al)" +sub labs { + unimpl "labs() is C-specific, use abs instead"; +} + +# end of POSIX::labs +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/ldiv.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/ldiv.al new file mode 100644 index 0000000..b3a9bdc --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/ldiv.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 465 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/ldiv.al)" +sub ldiv { + unimpl "ldiv() is C-specific, use /, % and int instead"; +} + +# end of POSIX::ldiv +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/link.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/link.al new file mode 100644 index 0000000..24c31cc --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/link.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 726 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/link.al)" +sub link { + usage "link(oldfilename, newfilename)" if @_ != 2; + CORE::link($_[0], $_[1]); +} + +# end of POSIX::link +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/load_imports.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/load_imports.al new file mode 100644 index 0000000..bcbd3d4 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/load_imports.al @@ -0,0 +1,230 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 759 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/load_imports.al)" +sub load_imports { +%EXPORT_TAGS = ( + + assert_h => [qw(assert NDEBUG)], + + ctype_h => [qw(isalnum isalpha iscntrl isdigit isgraph islower + isprint ispunct isspace isupper isxdigit tolower toupper)], + + dirent_h => [], + + errno_h => [qw(E2BIG EACCES EADDRINUSE EADDRNOTAVAIL EAFNOSUPPORT + EAGAIN EALREADY EBADF EBUSY ECHILD ECONNABORTED + ECONNREFUSED ECONNRESET EDEADLK EDESTADDRREQ EDOM EDQUOT + EEXIST EFAULT EFBIG EHOSTDOWN EHOSTUNREACH EINPROGRESS + EINTR EINVAL EIO EISCONN EISDIR ELOOP EMFILE EMLINK + EMSGSIZE ENAMETOOLONG ENETDOWN ENETRESET ENETUNREACH + ENFILE ENOBUFS ENODEV ENOENT ENOEXEC ENOLCK ENOMEM + ENOPROTOOPT ENOSPC ENOSYS ENOTBLK ENOTCONN ENOTDIR + ENOTEMPTY ENOTSOCK ENOTTY ENXIO EOPNOTSUPP EPERM + EPFNOSUPPORT EPIPE EPROCLIM EPROTONOSUPPORT EPROTOTYPE + ERANGE EREMOTE ERESTART EROFS ESHUTDOWN ESOCKTNOSUPPORT + ESPIPE ESRCH ESTALE ETIMEDOUT ETOOMANYREFS ETXTBSY + EUSERS EWOULDBLOCK EXDEV errno)], + + fcntl_h => [qw(FD_CLOEXEC F_DUPFD F_GETFD F_GETFL F_GETLK F_RDLCK + F_SETFD F_SETFL F_SETLK F_SETLKW F_UNLCK F_WRLCK + O_ACCMODE O_APPEND O_CREAT O_EXCL O_NOCTTY O_NONBLOCK + O_RDONLY O_RDWR O_TRUNC O_WRONLY + creat + SEEK_CUR SEEK_END SEEK_SET + S_IRGRP S_IROTH S_IRUSR S_IRWXG S_IRWXO S_IRWXU + S_ISBLK S_ISCHR S_ISDIR S_ISFIFO S_ISGID S_ISREG S_ISUID + S_IWGRP S_IWOTH S_IWUSR)], + + float_h => [qw(DBL_DIG DBL_EPSILON DBL_MANT_DIG + DBL_MAX DBL_MAX_10_EXP DBL_MAX_EXP + DBL_MIN DBL_MIN_10_EXP DBL_MIN_EXP + FLT_DIG FLT_EPSILON FLT_MANT_DIG + FLT_MAX FLT_MAX_10_EXP FLT_MAX_EXP + FLT_MIN FLT_MIN_10_EXP FLT_MIN_EXP + FLT_RADIX FLT_ROUNDS + LDBL_DIG LDBL_EPSILON LDBL_MANT_DIG + LDBL_MAX LDBL_MAX_10_EXP LDBL_MAX_EXP + LDBL_MIN LDBL_MIN_10_EXP LDBL_MIN_EXP)], + + grp_h => [], + + limits_h => [qw( ARG_MAX CHAR_BIT CHAR_MAX CHAR_MIN CHILD_MAX + INT_MAX INT_MIN LINK_MAX LONG_MAX LONG_MIN MAX_CANON + MAX_INPUT MB_LEN_MAX NAME_MAX NGROUPS_MAX OPEN_MAX + PATH_MAX PIPE_BUF SCHAR_MAX SCHAR_MIN SHRT_MAX SHRT_MIN + SSIZE_MAX STREAM_MAX TZNAME_MAX UCHAR_MAX UINT_MAX + ULONG_MAX USHRT_MAX _POSIX_ARG_MAX _POSIX_CHILD_MAX + _POSIX_LINK_MAX _POSIX_MAX_CANON _POSIX_MAX_INPUT + _POSIX_NAME_MAX _POSIX_NGROUPS_MAX _POSIX_OPEN_MAX + _POSIX_PATH_MAX _POSIX_PIPE_BUF _POSIX_SSIZE_MAX + _POSIX_STREAM_MAX _POSIX_TZNAME_MAX)], + + locale_h => [qw(LC_ALL LC_COLLATE LC_CTYPE LC_MESSAGES + LC_MONETARY LC_NUMERIC LC_TIME NULL + localeconv setlocale)], + + math_h => [qw(HUGE_VAL acos asin atan ceil cosh fabs floor fmod + frexp ldexp log10 modf pow sinh tan tanh)], + + pwd_h => [], + + setjmp_h => [qw(longjmp setjmp siglongjmp sigsetjmp)], + + signal_h => [qw(SA_NOCLDSTOP SA_NOCLDWAIT SA_NODEFER SA_ONSTACK + SA_RESETHAND SA_RESTART SA_SIGINFO SIGABRT SIGALRM + SIGCHLD SIGCONT SIGFPE SIGHUP SIGILL SIGINT SIGKILL + SIGPIPE %SIGRT SIGRTMIN SIGRTMAX SIGQUIT SIGSEGV SIGSTOP + SIGTERM SIGTSTP SIGTTIN SIGTTOU SIGUSR1 SIGUSR2 + SIG_BLOCK SIG_DFL SIG_ERR SIG_IGN SIG_SETMASK SIG_UNBLOCK + raise sigaction signal sigpending sigprocmask sigsuspend)], + + stdarg_h => [], + + stddef_h => [qw(NULL offsetof)], + + stdio_h => [qw(BUFSIZ EOF FILENAME_MAX L_ctermid L_cuserid + L_tmpname NULL SEEK_CUR SEEK_END SEEK_SET + STREAM_MAX TMP_MAX stderr stdin stdout + clearerr fclose fdopen feof ferror fflush fgetc fgetpos + fgets fopen fprintf fputc fputs fread freopen + fscanf fseek fsetpos ftell fwrite getchar gets + perror putc putchar puts remove rewind + scanf setbuf setvbuf sscanf tmpfile tmpnam + ungetc vfprintf vprintf vsprintf)], + + stdlib_h => [qw(EXIT_FAILURE EXIT_SUCCESS MB_CUR_MAX NULL RAND_MAX + abort atexit atof atoi atol bsearch calloc div + free getenv labs ldiv malloc mblen mbstowcs mbtowc + qsort realloc strtod strtol strtoul wcstombs wctomb)], + + string_h => [qw(NULL memchr memcmp memcpy memmove memset strcat + strchr strcmp strcoll strcpy strcspn strerror strlen + strncat strncmp strncpy strpbrk strrchr strspn strstr + strtok strxfrm)], + + sys_stat_h => [qw(S_IRGRP S_IROTH S_IRUSR S_IRWXG S_IRWXO S_IRWXU + S_ISBLK S_ISCHR S_ISDIR S_ISFIFO S_ISGID S_ISREG + S_ISUID S_IWGRP S_IWOTH S_IWUSR S_IXGRP S_IXOTH S_IXUSR + fstat mkfifo)], + + sys_times_h => [], + + sys_types_h => [], + + sys_utsname_h => [qw(uname)], + + sys_wait_h => [qw(WEXITSTATUS WIFEXITED WIFSIGNALED WIFSTOPPED + WNOHANG WSTOPSIG WTERMSIG WUNTRACED)], + + termios_h => [qw( B0 B110 B1200 B134 B150 B1800 B19200 B200 B2400 + B300 B38400 B4800 B50 B600 B75 B9600 BRKINT CLOCAL + CREAD CS5 CS6 CS7 CS8 CSIZE CSTOPB ECHO ECHOE ECHOK + ECHONL HUPCL ICANON ICRNL IEXTEN IGNBRK IGNCR IGNPAR + INLCR INPCK ISIG ISTRIP IXOFF IXON NCCS NOFLSH OPOST + PARENB PARMRK PARODD TCIFLUSH TCIOFF TCIOFLUSH TCION + TCOFLUSH TCOOFF TCOON TCSADRAIN TCSAFLUSH TCSANOW + TOSTOP VEOF VEOL VERASE VINTR VKILL VMIN VQUIT VSTART + VSTOP VSUSP VTIME + cfgetispeed cfgetospeed cfsetispeed cfsetospeed tcdrain + tcflow tcflush tcgetattr tcsendbreak tcsetattr )], + + time_h => [qw(CLK_TCK CLOCKS_PER_SEC NULL asctime clock ctime + difftime mktime strftime tzset tzname)], + + unistd_h => [qw(F_OK NULL R_OK SEEK_CUR SEEK_END SEEK_SET + STDERR_FILENO STDIN_FILENO STDOUT_FILENO W_OK X_OK + _PC_CHOWN_RESTRICTED _PC_LINK_MAX _PC_MAX_CANON + _PC_MAX_INPUT _PC_NAME_MAX _PC_NO_TRUNC _PC_PATH_MAX + _PC_PIPE_BUF _PC_VDISABLE _POSIX_CHOWN_RESTRICTED + _POSIX_JOB_CONTROL _POSIX_NO_TRUNC _POSIX_SAVED_IDS + _POSIX_VDISABLE _POSIX_VERSION _SC_ARG_MAX + _SC_CHILD_MAX _SC_CLK_TCK _SC_JOB_CONTROL + _SC_NGROUPS_MAX _SC_OPEN_MAX _SC_PAGESIZE _SC_SAVED_IDS + _SC_STREAM_MAX _SC_TZNAME_MAX _SC_VERSION + _exit access ctermid cuserid + dup2 dup execl execle execlp execv execve execvp + fpathconf fsync getcwd getegid geteuid getgid getgroups + getpid getuid isatty lseek pathconf pause setgid setpgid + setsid setuid sysconf tcgetpgrp tcsetpgrp ttyname)], + + utime_h => [], + +); + +# Exporter::export_tags(); +{ + # De-duplicate the export list: + my %export; + @export{map {@$_} values %EXPORT_TAGS} = (); + # Doing the de-dup with a temporary hash has the advantage that the SVs in + # @EXPORT are actually shared hash key sacalars, which will save some memory. + push @EXPORT, keys %export; +} + +@EXPORT_OK = qw( + abs + alarm + atan2 + chdir + chmod + chown + close + closedir + cos + exit + exp + fcntl + fileno + fork + getc + getgrgid + getgrnam + getlogin + getpgrp + getppid + getpwnam + getpwuid + gmtime + isatty + kill + lchown + link + localtime + log + mkdir + nice + open + opendir + pipe + printf + rand + read + readdir + rename + rewinddir + rmdir + sin + sleep + sprintf + sqrt + srand + stat + system + time + times + umask + unlink + utime + wait + waitpid + write +); + +require Exporter; +} + +# end of POSIX::SigAction::load_imports +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/localtime.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/localtime.al new file mode 100644 index 0000000..0377aa7 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/localtime.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 621 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/localtime.al)" +sub localtime { + usage "localtime(time)" if @_ != 1; + CORE::localtime($_[0]); +} + +# end of POSIX::localtime +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/log.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/log.al new file mode 100644 index 0000000..8818747 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/log.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 181 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/log.al)" +sub log { + usage "log(x)" if @_ != 1; + CORE::log($_[0]); +} + +# end of POSIX::log +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/longjmp.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/longjmp.al new file mode 100644 index 0000000..4c02db1 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/longjmp.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 211 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/longjmp.al)" +sub longjmp { + unimpl "longjmp() is C-specific: use die instead"; +} + +# end of POSIX::longjmp +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/malloc.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/malloc.al new file mode 100644 index 0000000..c9fe128 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/malloc.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 469 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/malloc.al)" +sub malloc { + unimpl "malloc() is C-specific, stopped"; +} + +# end of POSIX::malloc +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/memchr.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/memchr.al new file mode 100644 index 0000000..e79ac78 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/memchr.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 494 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/memchr.al)" +sub memchr { + unimpl "memchr() is C-specific, use index() instead"; +} + +# end of POSIX::memchr +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/memcmp.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/memcmp.al new file mode 100644 index 0000000..91c6ac9 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/memcmp.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 498 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/memcmp.al)" +sub memcmp { + unimpl "memcmp() is C-specific, use eq instead"; +} + +# end of POSIX::memcmp +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/memcpy.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/memcpy.al new file mode 100644 index 0000000..58762fb --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/memcpy.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 502 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/memcpy.al)" +sub memcpy { + unimpl "memcpy() is C-specific, use = instead"; +} + +# end of POSIX::memcpy +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/memmove.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/memmove.al new file mode 100644 index 0000000..246891c --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/memmove.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 506 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/memmove.al)" +sub memmove { + unimpl "memmove() is C-specific, use = instead"; +} + +# end of POSIX::memmove +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/memset.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/memset.al new file mode 100644 index 0000000..c79c94b --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/memset.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 510 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/memset.al)" +sub memset { + unimpl "memset() is C-specific, use x instead"; +} + +# end of POSIX::memset +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/mkdir.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/mkdir.al new file mode 100644 index 0000000..c7cc6db --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/mkdir.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 591 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/mkdir.al)" +sub mkdir { + usage "mkdir(directoryname, mode)" if @_ != 2; + CORE::mkdir($_[0], $_[1]); +} + +# end of POSIX::mkdir +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/offsetof.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/offsetof.al new file mode 100644 index 0000000..ad859d4 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/offsetof.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 237 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/offsetof.al)" +sub offsetof { + unimpl "offsetof() is C-specific, stopped"; +} + +# end of POSIX::offsetof +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/opendir.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/opendir.al new file mode 100644 index 0000000..42eb9d3 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/opendir.al @@ -0,0 +1,16 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 118 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/opendir.al)" +sub opendir { + usage "opendir(directory)" if @_ != 1; + my $dirhandle; + CORE::opendir($dirhandle, $_[0]) + ? $dirhandle + : undef; +} + +# end of POSIX::opendir +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/perror.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/perror.al new file mode 100644 index 0000000..5d8c596 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/perror.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 344 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/perror.al)" +sub perror { + print STDERR "@_: " if @_; + print STDERR $!,"\n"; +} + +# end of POSIX::perror +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/pow.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/pow.al new file mode 100644 index 0000000..0cab48aa0 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/pow.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 186 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/pow.al)" +sub pow { + usage "pow(x,exponent)" if @_ != 2; + $_[0] ** $_[1]; +} + +# end of POSIX::pow +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/printf.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/printf.al new file mode 100644 index 0000000..2140c00 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/printf.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 349 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/printf.al)" +sub printf { + usage "printf(pattern, args...)" if @_ < 1; + CORE::printf STDOUT @_; +} + +# end of POSIX::printf +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/putc.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/putc.al new file mode 100644 index 0000000..3c8ef98 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/putc.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 354 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/putc.al)" +sub putc { + unimpl "putc() is C-specific--use print instead"; +} + +# end of POSIX::putc +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/putchar.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/putchar.al new file mode 100644 index 0000000..da4a6ce --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/putchar.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 358 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/putchar.al)" +sub putchar { + unimpl "putchar() is C-specific--use print instead"; +} + +# end of POSIX::putchar +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/puts.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/puts.al new file mode 100644 index 0000000..36b6d38 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/puts.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 362 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/puts.al)" +sub puts { + unimpl "puts() is C-specific--use print instead"; +} + +# end of POSIX::puts +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/qsort.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/qsort.al new file mode 100644 index 0000000..e0adaf9 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/qsort.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 473 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/qsort.al)" +sub qsort { + unimpl "qsort() is C-specific, use sort instead"; +} + +# end of POSIX::qsort +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/raise.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/raise.al new file mode 100644 index 0000000..8c5e818 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/raise.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 232 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/raise.al)" +sub raise { + usage "raise(sig)" if @_ != 1; + CORE::kill $_[0], $$; # Is this good enough? +} + +# end of POSIX::raise +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/rand.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/rand.al new file mode 100644 index 0000000..4805058 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/rand.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 477 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/rand.al)" +sub rand { + unimpl "rand() is non-portable, use Perl's rand instead"; +} + +# end of POSIX::rand +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/readdir.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/readdir.al new file mode 100644 index 0000000..4eb84ba --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/readdir.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 126 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/readdir.al)" +sub readdir { + usage "readdir(dirhandle)" if @_ != 1; + CORE::readdir($_[0]); +} + +# end of POSIX::readdir +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/realloc.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/realloc.al new file mode 100644 index 0000000..df54e05 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/realloc.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 481 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/realloc.al)" +sub realloc { + unimpl "realloc() is C-specific, stopped"; +} + +# end of POSIX::realloc +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/redef.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/redef.al new file mode 100644 index 0000000..c25f14b --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/redef.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 85 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/redef.al)" +sub redef { + my ($mess) = @_; + croak "Use method $mess instead"; +} + +# end of POSIX::redef +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/remove.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/remove.al new file mode 100644 index 0000000..af53e37 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/remove.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 366 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/remove.al)" +sub remove { + usage "remove(filename)" if @_ != 1; + (-d $_[0]) ? CORE::rmdir($_[0]) : CORE::unlink($_[0]); +} + +# end of POSIX::remove +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/rename.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/rename.al new file mode 100644 index 0000000..f1f2289 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/rename.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 371 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/rename.al)" +sub rename { + usage "rename(oldfilename, newfilename)" if @_ != 2; + CORE::rename($_[0], $_[1]); +} + +# end of POSIX::rename +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/rewind.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/rewind.al new file mode 100644 index 0000000..fe93793 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/rewind.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 376 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/rewind.al)" +sub rewind { + usage "rewind(filehandle)" if @_ != 1; + CORE::seek($_[0],0,0); +} + +# end of POSIX::rewind +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/rewinddir.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/rewinddir.al new file mode 100644 index 0000000..ecd0564 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/rewinddir.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 131 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/rewinddir.al)" +sub rewinddir { + usage "rewinddir(dirhandle)" if @_ != 1; + CORE::rewinddir($_[0]); +} + +# end of POSIX::rewinddir +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/rmdir.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/rmdir.al new file mode 100644 index 0000000..d12df09 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/rmdir.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 731 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/rmdir.al)" +sub rmdir { + usage "rmdir(directoryname)" if @_ != 1; + CORE::rmdir($_[0]); +} + +# end of POSIX::rmdir +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/scanf.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/scanf.al new file mode 100644 index 0000000..38c48ba --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/scanf.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 381 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/scanf.al)" +sub scanf { + unimpl "scanf() is C-specific--use <> and regular expressions instead"; +} + +# end of POSIX::scanf +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/setbuf.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/setbuf.al new file mode 100644 index 0000000..306e401 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/setbuf.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 736 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/setbuf.al)" +sub setbuf { + redef "IO::Handle::setbuf()"; +} + +# end of POSIX::setbuf +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/setjmp.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/setjmp.al new file mode 100644 index 0000000..e6bc824 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/setjmp.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 215 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/setjmp.al)" +sub setjmp { + unimpl "setjmp() is C-specific: use eval {} instead"; +} + +# end of POSIX::setjmp +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/setvbuf.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/setvbuf.al new file mode 100644 index 0000000..20f02e6b --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/setvbuf.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 740 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/setvbuf.al)" +sub setvbuf { + redef "IO::Handle::setvbuf()"; +} + +# end of POSIX::setvbuf +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/siglongjmp.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/siglongjmp.al new file mode 100644 index 0000000..eb97f9d --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/siglongjmp.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 219 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/siglongjmp.al)" +sub siglongjmp { + unimpl "siglongjmp() is C-specific: use die instead"; +} + +# end of POSIX::siglongjmp +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sigsetjmp.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sigsetjmp.al new file mode 100644 index 0000000..2ecfcd9 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sigsetjmp.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 223 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/sigsetjmp.al)" +sub sigsetjmp { + unimpl "sigsetjmp() is C-specific: use eval {} instead"; +} + +# end of POSIX::sigsetjmp +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sin.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sin.al new file mode 100644 index 0000000..391287c --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sin.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 191 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/sin.al)" +sub sin { + usage "sin(x)" if @_ != 1; + CORE::sin($_[0]); +} + +# end of POSIX::sin +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sleep.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sleep.al new file mode 100644 index 0000000..5006b42 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sleep.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 744 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/sleep.al)" +sub sleep { + usage "sleep(seconds)" if @_ != 1; + $_[0] - CORE::sleep($_[0]); +} + +# end of POSIX::sleep +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sprintf.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sprintf.al new file mode 100644 index 0000000..97a5788 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sprintf.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 385 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/sprintf.al)" +sub sprintf { + usage "sprintf(pattern,args)" if @_ == 0; + CORE::sprintf(shift,@_); +} + +# end of POSIX::sprintf +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sqrt.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sqrt.al new file mode 100644 index 0000000..b8ffb66 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sqrt.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 196 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/sqrt.al)" +sub sqrt { + usage "sqrt(x)" if @_ != 1; + CORE::sqrt($_[0]); +} + +# end of POSIX::sqrt +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/srand.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/srand.al new file mode 100644 index 0000000..45a7399 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/srand.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 485 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/srand.al)" +sub srand { + unimpl "srand()"; +} + +# end of POSIX::srand +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sscanf.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sscanf.al new file mode 100644 index 0000000..5f7dfa9 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/sscanf.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 390 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/sscanf.al)" +sub sscanf { + unimpl "sscanf() is C-specific--use regular expressions instead"; +} + +# end of POSIX::sscanf +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/stat.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/stat.al new file mode 100644 index 0000000..e75463d --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/stat.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 596 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/stat.al)" +sub stat { + usage "stat(filename)" if @_ != 1; + CORE::stat($_[0]); +} + +# end of POSIX::stat +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strcat.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strcat.al new file mode 100644 index 0000000..bdadeb3 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strcat.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 514 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/strcat.al)" +sub strcat { + unimpl "strcat() is C-specific, use .= instead"; +} + +# end of POSIX::strcat +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strchr.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strchr.al new file mode 100644 index 0000000..1d3a000 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strchr.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 518 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/strchr.al)" +sub strchr { + unimpl "strchr() is C-specific, use index() instead"; +} + +# end of POSIX::strchr +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strcmp.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strcmp.al new file mode 100644 index 0000000..06bad76 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strcmp.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 522 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/strcmp.al)" +sub strcmp { + unimpl "strcmp() is C-specific, use eq instead"; +} + +# end of POSIX::strcmp +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strcpy.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strcpy.al new file mode 100644 index 0000000..392f8db --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strcpy.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 526 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/strcpy.al)" +sub strcpy { + unimpl "strcpy() is C-specific, use = instead"; +} + +# end of POSIX::strcpy +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strcspn.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strcspn.al new file mode 100644 index 0000000..8c0d8c4 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strcspn.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 530 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/strcspn.al)" +sub strcspn { + unimpl "strcspn() is C-specific, use regular expressions instead"; +} + +# end of POSIX::strcspn +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strerror.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strerror.al new file mode 100644 index 0000000..a494b70 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strerror.al @@ -0,0 +1,14 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 534 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/strerror.al)" +sub strerror { + usage "strerror(errno)" if @_ != 1; + local $! = $_[0]; + $! . ""; +} + +# end of POSIX::strerror +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strlen.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strlen.al new file mode 100644 index 0000000..06a59cc --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strlen.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 540 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/strlen.al)" +sub strlen { + unimpl "strlen() is C-specific, use length instead"; +} + +# end of POSIX::strlen +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strncat.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strncat.al new file mode 100644 index 0000000..0eadd70 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strncat.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 544 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/strncat.al)" +sub strncat { + unimpl "strncat() is C-specific, use .= instead"; +} + +# end of POSIX::strncat +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strncmp.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strncmp.al new file mode 100644 index 0000000..ea142cb --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strncmp.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 548 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/strncmp.al)" +sub strncmp { + unimpl "strncmp() is C-specific, use eq instead"; +} + +# end of POSIX::strncmp +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strncpy.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strncpy.al new file mode 100644 index 0000000..4075962 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strncpy.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 552 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/strncpy.al)" +sub strncpy { + unimpl "strncpy() is C-specific, use = instead"; +} + +# end of POSIX::strncpy +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strpbrk.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strpbrk.al new file mode 100644 index 0000000..6a0074e --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strpbrk.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 556 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/strpbrk.al)" +sub strpbrk { + unimpl "strpbrk() is C-specific, stopped"; +} + +# end of POSIX::strpbrk +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strrchr.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strrchr.al new file mode 100644 index 0000000..eb91872 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strrchr.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 560 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/strrchr.al)" +sub strrchr { + unimpl "strrchr() is C-specific, use rindex() instead"; +} + +# end of POSIX::strrchr +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strspn.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strspn.al new file mode 100644 index 0000000..506ca12 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strspn.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 564 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/strspn.al)" +sub strspn { + unimpl "strspn() is C-specific, stopped"; +} + +# end of POSIX::strspn +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strstr.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strstr.al new file mode 100644 index 0000000..4a1401c --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strstr.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 568 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/strstr.al)" +sub strstr { + usage "strstr(big, little)" if @_ != 2; + CORE::index($_[0], $_[1]); +} + +# end of POSIX::strstr +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strtok.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strtok.al new file mode 100644 index 0000000..8f4c10c --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/strtok.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 573 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/strtok.al)" +sub strtok { + unimpl "strtok() is C-specific, stopped"; +} + +# end of POSIX::strtok +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/system.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/system.al new file mode 100644 index 0000000..defdf5c --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/system.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 489 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/system.al)" +sub system { + usage "system(command)" if @_ != 1; + CORE::system($_[0]); +} + +# end of POSIX::system +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/time.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/time.al new file mode 100644 index 0000000..9a78099 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/time.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 626 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/time.al)" +sub time { + usage "time()" if @_ != 0; + CORE::time; +} + +# end of POSIX::time +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/tmpfile.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/tmpfile.al new file mode 100644 index 0000000..2417f69 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/tmpfile.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 394 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/tmpfile.al)" +sub tmpfile { + redef "IO::File::new_tmpfile()"; +} + +# end of POSIX::tmpfile +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/tolower.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/tolower.al new file mode 100644 index 0000000..d433272 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/tolower.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 103 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/tolower.al)" +sub tolower { + usage "tolower(string)" if @_ != 1; + lc($_[0]); +} + +# end of POSIX::tolower +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/toupper.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/toupper.al new file mode 100644 index 0000000..1130fbc --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/toupper.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 108 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/toupper.al)" +sub toupper { + usage "toupper(string)" if @_ != 1; + uc($_[0]); +} + +# end of POSIX::toupper +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/umask.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/umask.al new file mode 100644 index 0000000..b5a5ab5 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/umask.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 601 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/umask.al)" +sub umask { + usage "umask(mask)" if @_ != 1; + CORE::umask($_[0]); +} + +# end of POSIX::umask +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/ungetc.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/ungetc.al new file mode 100644 index 0000000..f7deefd --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/ungetc.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 398 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/ungetc.al)" +sub ungetc { + redef "IO::Handle::ungetc()"; +} + +# end of POSIX::ungetc +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/unimpl.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/unimpl.al new file mode 100644 index 0000000..8308c37 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/unimpl.al @@ -0,0 +1,14 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 90 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/unimpl.al)" +sub unimpl { + my ($mess) = @_; + $mess =~ s/xxx//; + croak "Unimplemented: POSIX::$mess"; +} + +# end of POSIX::unimpl +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/unlink.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/unlink.al new file mode 100644 index 0000000..44435cd --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/unlink.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 749 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/unlink.al)" +sub unlink { + usage "unlink(filename)" if @_ != 1; + CORE::unlink($_[0]); +} + +# end of POSIX::unlink +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/usage.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/usage.al new file mode 100644 index 0000000..bde9bba --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/usage.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 80 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/usage.al)" +sub usage { + my ($mess) = @_; + croak "Usage: POSIX::$mess"; +} + +# end of POSIX::usage +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/utime.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/utime.al new file mode 100644 index 0000000..1ff0393 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/utime.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 754 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/utime.al)" +sub utime { + usage "utime(filename, atime, mtime)" if @_ != 3; + CORE::utime($_[1], $_[2], $_[0]); +} + +# end of POSIX::utime +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/vfprintf.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/vfprintf.al new file mode 100644 index 0000000..abf1378 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/vfprintf.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 402 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/vfprintf.al)" +sub vfprintf { + unimpl "vfprintf() is C-specific"; +} + +# end of POSIX::vfprintf +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/vprintf.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/vprintf.al new file mode 100644 index 0000000..b01803a --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/vprintf.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 406 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/vprintf.al)" +sub vprintf { + unimpl "vprintf() is C-specific"; +} + +# end of POSIX::vprintf +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/vsprintf.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/vsprintf.al new file mode 100644 index 0000000..155191c --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/vsprintf.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 410 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/vsprintf.al)" +sub vsprintf { + unimpl "vsprintf() is C-specific"; +} + +# end of POSIX::vsprintf +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/wait.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/wait.al new file mode 100644 index 0000000..bf3ffc3 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/wait.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 606 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/wait.al)" +sub wait { + usage "wait()" if @_ != 0; + CORE::wait(); +} + +# end of POSIX::wait +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/waitpid.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/waitpid.al new file mode 100644 index 0000000..9627d1e --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/POSIX/waitpid.al @@ -0,0 +1,13 @@ +# NOTE: Derived from ../../lib/POSIX.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package POSIX; + +#line 611 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/waitpid.al)" +sub waitpid { + usage "waitpid(pid, options)" if @_ != 2; + CORE::waitpid($_[0], $_[1]); +} + +# end of POSIX::waitpid +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/BIN_VERSION_NV.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/BIN_VERSION_NV.al new file mode 100644 index 0000000..a0fe3f3 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/BIN_VERSION_NV.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 192 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/BIN_VERSION_NV.al)" +sub BIN_VERSION_NV { + sprintf "%d.%03d", BIN_MAJOR(), BIN_MINOR(); +} + +# end of Storable::BIN_VERSION_NV +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/BIN_WRITE_VERSION_NV.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/BIN_WRITE_VERSION_NV.al new file mode 100644 index 0000000..8c4244f --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/BIN_WRITE_VERSION_NV.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 196 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/BIN_WRITE_VERSION_NV.al)" +sub BIN_WRITE_VERSION_NV { + sprintf "%d.%03d", BIN_MAJOR(), BIN_WRITE_MINOR(); +} + +# end of Storable::BIN_WRITE_VERSION_NV +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/CAN_FLOCK.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/CAN_FLOCK.al new file mode 100644 index 0000000..d806b45 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/CAN_FLOCK.al @@ -0,0 +1,21 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 83 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/CAN_FLOCK.al)" +# +# Determine whether locking is possible, but only when needed. +# + +sub CAN_FLOCK; my $CAN_FLOCK; sub CAN_FLOCK { + return $CAN_FLOCK if defined $CAN_FLOCK; + require Config; import Config; + return $CAN_FLOCK = + $Config{'d_flock'} || + $Config{'d_fcntl_can_lock'} || + $Config{'d_lockf'}; +} + +# end of Storable::CAN_FLOCK +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/_freeze.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/_freeze.al new file mode 100644 index 0000000..e7d9e68 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/_freeze.al @@ -0,0 +1,23 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 330 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/_freeze.al)" +# Internal freeze routine +sub _freeze { + my $xsptr = shift; + my $self = shift; + logcroak "not a reference" unless ref($self); + logcroak "too many arguments" unless @_ == 0; # No @foo in arglist + my $da = $@; # Don't mess if called from exception handler + my $ret; + # Call C routine mstore or net_mstore, depending on network order + eval { $ret = &$xsptr($self) }; + logcroak $@ if $@ =~ s/\.?\n$/,/; + $@ = $da; + return $ret ? $ret : undef; +} + +# end of Storable::_freeze +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/_retrieve.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/_retrieve.al new file mode 100644 index 0000000..ad79059 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/_retrieve.al @@ -0,0 +1,31 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 364 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/_retrieve.al)" +# Internal retrieve routine +sub _retrieve { + my ($file, $use_locking) = @_; + local *FILE; + open(FILE, $file) || logcroak "can't open $file: $!"; + binmode FILE; # Archaic systems... + my $self; + my $da = $@; # Could be from exception handler + if ($use_locking) { + unless (&CAN_FLOCK) { + logcarp "Storable::lock_store: fcntl/flock emulation broken on $^O"; + return undef; + } + flock(FILE, LOCK_SH) || logcroak "can't get shared lock on $file: $!"; + # Unlocking will happen when FILE is closed + } + eval { $self = pretrieve(*FILE) }; # Call C routine + close(FILE); + logcroak $@ if $@ =~ s/\.?\n$/,/; + $@ = $da; + return $self; +} + +# end of Storable::_retrieve +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/_store.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/_store.al new file mode 100644 index 0000000..08595e9 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/_store.al @@ -0,0 +1,41 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 239 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/_store.al)" +# Internal store to file routine +sub _store { + my $xsptr = shift; + my $self = shift; + my ($file, $use_locking) = @_; + logcroak "not a reference" unless ref($self); + logcroak "wrong argument number" unless @_ == 2; # No @foo in arglist + local *FILE; + if ($use_locking) { + open(FILE, ">>$file") || logcroak "can't write into $file: $!"; + unless (&CAN_FLOCK) { + logcarp "Storable::lock_store: fcntl/flock emulation broken on $^O"; + return undef; + } + flock(FILE, LOCK_EX) || + logcroak "can't get exclusive lock on $file: $!"; + truncate FILE, 0; + # Unlocking will happen when FILE is closed + } else { + open(FILE, ">$file") || logcroak "can't create $file: $!"; + } + binmode FILE; # Archaic systems... + my $da = $@; # Don't mess if called from exception handler + my $ret; + # Call C routine nstore or pstore, depending on network order + eval { $ret = &$xsptr(*FILE, $self) }; + close(FILE) or $ret = undef; + unlink($file) or warn "Can't unlink $file: $!\n" if $@ || !defined $ret; + logcroak $@ if $@ =~ s/\.?\n$/,/; + $@ = $da; + return $ret ? $ret : undef; +} + +# end of Storable::_store +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/_store_fd.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/_store_fd.al new file mode 100644 index 0000000..8e7c1f0 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/_store_fd.al @@ -0,0 +1,27 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 292 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/_store_fd.al)" +# Internal store routine on opened file descriptor +sub _store_fd { + my $xsptr = shift; + my $self = shift; + my ($file) = @_; + logcroak "not a reference" unless ref($self); + logcroak "too many arguments" unless @_ == 1; # No @foo in arglist + my $fd = fileno($file); + logcroak "not a valid file descriptor" unless defined $fd; + my $da = $@; # Don't mess if called from exception handler + my $ret; + # Call C routine nstore or pstore, depending on network order + eval { $ret = &$xsptr($file, $self) }; + logcroak $@ if $@ =~ s/\.?\n$/,/; + local $\; print $file ''; # Autoflush the file if wanted + $@ = $da; + return $ret ? $ret : undef; +} + +# end of Storable::_store_fd +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/fd_retrieve.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/fd_retrieve.al new file mode 100644 index 0000000..48c35b1 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/fd_retrieve.al @@ -0,0 +1,25 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 387 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/fd_retrieve.al)" +# +# fd_retrieve +# +# Same as retrieve, but perform from an already opened file descriptor instead. +# +sub fd_retrieve { + my ($file) = @_; + my $fd = fileno($file); + logcroak "not a valid file descriptor" unless defined $fd; + my $self; + my $da = $@; # Could be from exception handler + eval { $self = pretrieve($file) }; # Call C routine + logcroak $@ if $@ =~ s/\.?\n$/,/; + $@ = $da; + return $self; +} + +# end of Storable::fd_retrieve +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/file_magic.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/file_magic.al new file mode 100644 index 0000000..f87ebc3 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/file_magic.al @@ -0,0 +1,21 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 118 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/file_magic.al)" +sub file_magic { + my $file = shift; + my $fh = new FileHandle; + open($fh, "<". $file) || die "Can't open '$file': $!"; + binmode($fh); + defined(sysread($fh, my $buf, 32)) || die "Can't read from '$file': $!"; + close($fh); + + $file = "./$file" unless $file; # ensure TRUE value + + return read_magic($buf, $file); +} + +# end of Storable::file_magic +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/freeze.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/freeze.al new file mode 100644 index 0000000..ca462d0 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/freeze.al @@ -0,0 +1,18 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 311 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/freeze.al)" +# +# freeze +# +# Store oject and its hierarchy in memory and return a scalar +# containing the result. +# +sub freeze { + _freeze(\&mstore, @_); +} + +# end of Storable::freeze +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/lock_nstore.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/lock_nstore.al new file mode 100644 index 0000000..e6a404c --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/lock_nstore.al @@ -0,0 +1,17 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 230 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/lock_nstore.al)" +# +# lock_nstore +# +# Same as nstore, but flock the file first (advisory locking). +# +sub lock_nstore { + return _store(\&net_pstore, @_, 1); +} + +# end of Storable::lock_nstore +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/lock_retrieve.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/lock_retrieve.al new file mode 100644 index 0000000..3ed5dd7 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/lock_retrieve.al @@ -0,0 +1,17 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 355 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/lock_retrieve.al)" +# +# lock_retrieve +# +# Same as retrieve, but with advisory locking. +# +sub lock_retrieve { + _retrieve($_[0], 1); +} + +# end of Storable::lock_retrieve +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/lock_store.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/lock_store.al new file mode 100644 index 0000000..570cac0 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/lock_store.al @@ -0,0 +1,17 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 221 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/lock_store.al)" +# +# lock_store +# +# Same as store, but flock the file first (advisory locking). +# +sub lock_store { + return _store(\&pstore, @_, 1); +} + +# end of Storable::lock_store +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/logcarp.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/logcarp.al new file mode 100644 index 0000000..b96468a --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/logcarp.al @@ -0,0 +1,12 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 79 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/logcarp.al)" +sub logcarp { + Carp::carp(@_); +} + +# end of Storable::logcarp +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/logcroak.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/logcroak.al new file mode 100644 index 0000000..8d7a631 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/logcroak.al @@ -0,0 +1,17 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 70 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/logcroak.al)" +# +# Use of Log::Agent is optional. If it hasn't imported these subs then +# Autoloader will kindly supply our fallback implementation. +# + +sub logcroak { + Carp::croak(@_); +} + +# end of Storable::logcroak +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/nfreeze.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/nfreeze.al new file mode 100644 index 0000000..2ee050d --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/nfreeze.al @@ -0,0 +1,17 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 321 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/nfreeze.al)" +# +# nfreeze +# +# Same as freeze but in network order. +# +sub nfreeze { + _freeze(\&net_mstore, @_); +} + +# end of Storable::nfreeze +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/nstore.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/nstore.al new file mode 100644 index 0000000..762be25 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/nstore.al @@ -0,0 +1,17 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 212 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/nstore.al)" +# +# nstore +# +# Same as store, but in network order. +# +sub nstore { + return _store(\&net_pstore, @_, 0); +} + +# end of Storable::nstore +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/nstore_fd.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/nstore_fd.al new file mode 100644 index 0000000..f1df417 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/nstore_fd.al @@ -0,0 +1,18 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 282 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/nstore_fd.al)" +# +# nstore_fd +# +# Same as store_fd, but in network order. +# +sub nstore_fd { + my ($self, $file) = @_; + return _store_fd(\&net_pstore, @_); +} + +# end of Storable::nstore_fd +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/read_magic.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/read_magic.al new file mode 100644 index 0000000..87f6d10 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/read_magic.al @@ -0,0 +1,69 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 131 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/read_magic.al)" +sub read_magic { + my($buf, $file) = @_; + my %info; + + my $buflen = length($buf); + my $magic; + if ($buf =~ s/^(pst0|perl-store)//) { + $magic = $1; + $info{file} = $file || 1; + } + else { + return undef if $file; + $magic = ""; + } + + return undef unless length($buf); + + my $net_order; + if ($magic eq "perl-store" && ord(substr($buf, 0, 1)) > 1) { + $info{version} = -1; + $net_order = 0; + } + else { + $net_order = ord(substr($buf, 0, 1, "")); + my $major = $net_order >> 1; + return undef if $major > 4; # sanity (assuming we never go that high) + $info{major} = $major; + $net_order &= 0x01; + if ($major > 1) { + return undef unless length($buf); + my $minor = ord(substr($buf, 0, 1, "")); + $info{minor} = $minor; + $info{version} = "$major.$minor"; + $info{version_nv} = sprintf "%d.%03d", $major, $minor; + } + else { + $info{version} = $major; + } + } + $info{version_nv} ||= $info{version}; + $info{netorder} = $net_order; + + unless ($net_order) { + return undef unless length($buf); + my $len = ord(substr($buf, 0, 1, "")); + return undef unless length($buf) >= $len; + return undef unless $len == 4 || $len == 8; # sanity + $info{byteorder} = substr($buf, 0, $len, ""); + $info{intsize} = ord(substr($buf, 0, 1, "")); + $info{longsize} = ord(substr($buf, 0, 1, "")); + $info{ptrsize} = ord(substr($buf, 0, 1, "")); + if ($info{version_nv} >= 2.002) { + return undef unless length($buf); + $info{nvsize} = ord(substr($buf, 0, 1, "")); + } + } + $info{hdrsize} = $buflen - length($buf); + + return \%info; +} + +# end of Storable::read_magic +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/retrieve.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/retrieve.al new file mode 100644 index 0000000..0e6234f --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/retrieve.al @@ -0,0 +1,18 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 345 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/retrieve.al)" +# +# retrieve +# +# Retrieve object hierarchy from disk, returning a reference to the root +# object of that tree. +# +sub retrieve { + _retrieve($_[0], 0); +} + +# end of Storable::retrieve +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/show_file_magic.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/show_file_magic.al new file mode 100644 index 0000000..3545ba0 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/show_file_magic.al @@ -0,0 +1,30 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 96 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/show_file_magic.al)" +sub show_file_magic { + print <<EOM; +# +# To recognize the data files of the Perl module Storable, +# the following lines need to be added to the local magic(5) file, +# usually either /usr/share/misc/magic or /etc/magic. +# +0 string perl-store perl Storable(v0.6) data +>4 byte >0 (net-order %d) +>>4 byte &01 (network-ordered) +>>4 byte =3 (major 1) +>>4 byte =2 (major 1) + +0 string pst0 perl Storable(v0.7) data +>4 byte >0 +>>4 byte &01 (network-ordered) +>>4 byte =5 (major 2) +>>4 byte =4 (major 2) +>>5 byte >0 (minor %d) +EOM +} + +# end of Storable::show_file_magic +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/store.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/store.al new file mode 100644 index 0000000..db21feb --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/store.al @@ -0,0 +1,20 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 200 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/store.al)" +# +# store +# +# Store target object hierarchy, identified by a reference to its root. +# The stored object tree may later be retrieved to memory via retrieve. +# Returns undef if an I/O error occurred, in which case the file is +# removed. +# +sub store { + return _store(\&pstore, @_, 0); +} + +# end of Storable::store +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/store_fd.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/store_fd.al new file mode 100644 index 0000000..a1c0982 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/store_fd.al @@ -0,0 +1,18 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 272 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/store_fd.al)" +# +# store_fd +# +# Same as store, but perform on an already opened file descriptor instead. +# Returns undef if an I/O error occurred. +# +sub store_fd { + return _store_fd(\&pstore, @_); +} + +# end of Storable::store_fd +1; diff --git a/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/thaw.al b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/thaw.al new file mode 100644 index 0000000..ea9e491 --- /dev/null +++ b/third_party/cygwin/lib/perl5/5.10/i686-cygwin/auto/Storable/thaw.al @@ -0,0 +1,28 @@ +# NOTE: Derived from ../../lib/Storable.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Storable; + +#line 404 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/thaw.al)" +# +# thaw +# +# Recreate objects in memory from an existing frozen image created +# by freeze. If the frozen image passed is undef, return undef. +# +sub thaw { + my ($frozen) = @_; + return undef unless defined $frozen; + my $self; + my $da = $@; # Could be from exception handler + eval { $self = mretrieve($frozen) }; # Call C routine + logcroak $@ if $@ =~ s/\.?\n$/,/; + $@ = $da; + return $self; +} + +1; +__END__ + +1; +# end of Storable::thaw |