Exception: NeverSayDie

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/neversaydie.rb,
ext/neversaydie/neversaydie.c

Constant Summary collapse

VERSION =
'1.0.0'

Class Method Summary collapse

Class Method Details

.segvObject



5
6
7
8
9
10
11
# File 'ext/neversaydie/neversaydie.c', line 5

static VALUE segv(VALUE self)
{
  int *ptr = NULL;
  *ptr = 1;

  return self;
}