2003-04-04 Havoc Pennington <hp@redhat.com>
[platform/upstream/dbus.git] / test / test-segfault.c
1 /* This is simply a process that segfaults */
2 #include <signal.h>
3
4 int
5 main (int argc, char **argv)
6 {
7   char *p = 0;
8   
9   raise (SIGSEGV);
10
11   *p = 'a';
12   
13   return 0;
14 }