Commit 588c7f77 authored by Geoff Simmons's avatar Geoff Simmons

remove the dependency on the Carp::Assert perl module

parent c0ee0283
......@@ -2,7 +2,14 @@
use strict;
use warnings;
use Carp::Assert;
sub assert {
unless($_[0]) {
require Carp;
Carp::confess();
}
return undef;
}
sub _OUT {
my $fd = shift;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment