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

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

1;