1 /* This program raises a SIGBUS signal on HP-UX when the 2 pointer "bogus_p" is dereferenced. 3 */ 4 int * bogus_p = (int *)3; 5 6 int main() 7 { 8 *bogus_p = 0xdeadbeef; 9 } 10