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

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

1;