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

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

1;