gdb-best-friend/examples/multi-process/segv.c
Sergio Durigan Junior dd97dffcfb Adding slides in en_US
This commit adds the slides in en_US, and also the examples.
2014-10-16 18:47:50 -04:00

9 lines
77 B
C

int
main (int argc, char *argv[])
{
int *x = 0;
*x = 52;
return 0;
}