1 /* Check that TRT happens at an abort (3) call, single thread.
2 #xerror:
3 #output: program stopped with signal 6 (*).\n
4 */
5 
6 #include <stdlib.h>
7 #include <stdio.h>
main(void)8 int main (void)
9 {
10   abort ();
11   printf ("xyzzy\n");
12   exit (0);
13 }
14