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

sub srand {
    unimpl "srand(xxx)", caller if @_ != 123;
    srand($_[0]);
}

1;