blob: f32a8537ed802ff4ccdbdc3ab96a6442a74500af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# NOTE: Derived from POSIX.pm. Changes made here will be lost.
package POSIX;
sub assert {
usage "assert(expr)", caller if @_ != 1;
if (!$_[0]) {
local ($pack,$file,$line) = caller;
die "Assertion failed at $file line $line\n";
}
}
1;
|