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

sub fflush {
    unimpl "fflush(xxx)", caller if @_ != 123;
    fflush($_[0]);
}

1;