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

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

1;