diff options
Diffstat (limited to 'lib/auto/POSIX/pow.al')
-rw-r--r-- | lib/auto/POSIX/pow.al | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/auto/POSIX/pow.al b/lib/auto/POSIX/pow.al new file mode 100644 index 0000000000..0893b2260e --- /dev/null +++ b/lib/auto/POSIX/pow.al @@ -0,0 +1,9 @@ +# NOTE: Derived from POSIX.pm. Changes made here will be lost. +package POSIX; + +sub pow { + usage "pow(x,exponent)", caller if @_ != 2; + $_[0] ** $_[1]; +} + +1; |