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