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

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

1;