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