perl 5.0 alpha 9
[p5sagit/p5-mst-13.2.git] / lib / auto / POSIX / calloc.al
CommitLineData
85e6fe83 1# NOTE: Derived from POSIX.pm. Changes made here will be lost.
2package POSIX;
3
4sub calloc {
5 unimpl "calloc(xxx)", caller if @_ != 123;
6 calloc($_[0]);
7}
8
91;