summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/cpan/Test-Simple/t/lib/SigDie.pm
blob: 0774728d4ed6add768f543c2888b441c62f40e54 (plain) (blame)
1
2
3
4
5
6
7
8
package SigDie;

use strict;

our $DIE;
$SIG{__DIE__} = sub { $DIE = $@ };

1;