summaryrefslogtreecommitdiff
path: root/lib/auto/POSIX/fileno.al
blob: 62c7c0aff8a96314936aa7fb0303fc61155c2f55 (plain)
1
2
3
4
5
6
7
8
9
# NOTE:  Derived from POSIX.pm.  Changes made here will be lost.
package POSIX;

sub fileno {
    usage "fileno(filehandle)", caller if @_ != 1;
    fileno($_[0]);
}

1;