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