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

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

1;