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

sub toupper {
    usage "toupper(string)", caller if @_ != 1;
    uc($_[0]);
}

1;