summaryrefslogtreecommitdiff
path: root/lib/auto/POSIX/fseek.al
blob: 55da72a549d466bead71b320fdd011509e64c07b (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 fseek {
    unimpl "fseek() is C-specific--use seek instead", caller;
    unimpl "fseek(xxx)", caller if @_ != 123;
    fseek($_[0]);
}

1;