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

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

1;