Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/gdb/testsuite/gdb.multi/crashme.c
2023-03-06 14:48:14 +01:00

12 lines
169 B
C

#include <stdlib.h>
#include <stdio.h>
int
main (int argc, char **argv)
{
int *foo = NULL;
printf ("Oh no, a bug!\n"); /* set breakpoint here */
return *foo;
}