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

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

1;