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

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

1;