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

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

/*
 * The purpose of this test case is to make sure that dbx interprets
 * the command "stop in same" at the top level to mean stop in the
 * routine same.  Originally, dbx complained since "same" in the initial
 * context refers to the module named "same" (since this file is "same.c").
 */

same ()
{
    printf("same function and module names\n");
}

main ()
{
    same();
    exit(0);
}