diff options
Diffstat (limited to 'lib/auto/POSIX/assert.al')
-rw-r--r-- | lib/auto/POSIX/assert.al | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/auto/POSIX/assert.al b/lib/auto/POSIX/assert.al deleted file mode 100644 index f32a8537ed..0000000000 --- a/lib/auto/POSIX/assert.al +++ /dev/null @@ -1,12 +0,0 @@ -# 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; |