4.4BSD/usr/src/old/dbx/tests/cc/strings.c

Compare this file to the similar file:
Show the results in this format:

/*
 * Test of displaying strings compiled into the text segment via -R.
 */

char str[] = "this is a test";

main ()
{
    f("parameter test");
}

f (s)
char *s;
{
    abort();
}