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

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

1;