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

sub ftell {
    unimpl "ftell() is C-specific--use tell instead", caller;
    unimpl "ftell(xxx)", caller if @_ != 123;
    ftell($_[0]);
}

1;