xref: /original-bsd/old/dbx/tests/cc/strings.c (revision e59fb703)
1 /*
2  * Test of displaying strings compiled into the text segment via -R.
3  */
4 
5 char str[] = "this is a test";
6 
7 main ()
8 {
9     f("parameter test");
10 }
11 
12 f (s)
13 char *s;
14 {
15     abort();
16 }
17