Sha256: 8bd4e72a144168aa15201f29c33caec60ff835380b35f7245702d6b6624dddbc

Contents?: true

Size: 408 Bytes

Versions: 2

Compression:

Stored size: 408 Bytes

Contents

# NOTE: Derived from ../../lib/POSIX.pm.
# Changes made here will be lost when autosplit is run again.
# See AutoSplit.pm.
package POSIX;

#line 576 "../../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;

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
STLExtract-1.0.1 Slic3r/Linux/lib/std/auto/POSIX/fstat.al
STLExtract-1.0.0 Slic3r/Linux/lib/std/auto/POSIX/fstat.al