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

sub raise {
    usage "raise(sig)", caller if @_ != 1;
    kill $$, $_[0];	# Is this good enough?
}

1;