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

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

1;