This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl 5.0 alpha 9
[perl5.git] / lib / auto / POSIX / abs.al
CommitLineData
85e6fe83
LW
1# NOTE: Derived from POSIX.pm. Changes made here will be lost.
2package POSIX;
3
4sub abs {
5 usage "abs(x)", caller if @_ != 1;
6 abs($_[0]);
7}
8
91;