xref: /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/lib/SigDie.pm (revision d13be5d47e4149db2549a9828e244d59dbc43f15)
1package SigDie;
2
3use strict;
4
5our $DIE;
6$SIG{__DIE__} = sub { $DIE = $@ };
7
81;
9