1: /*
   2:  * The purpose of this test case is to make sure that dbx interprets
   3:  * the command "stop in same" at the top level to mean stop in the
   4:  * routine same.  Originally, dbx complained since "same" in the initial
   5:  * context refers to the module named "same" (since this file is "same.c").
   6:  */
   7: 
   8: same ()
   9: {
  10:     printf("same function and module names\n");
  11: }
  12: 
  13: main ()
  14: {
  15:     same();
  16:     exit(0);
  17: }

Defined functions

main defined in line 13; never used
same defined in line 8; used 1 times
  • in line 15
Last modified: 1985-03-08
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 441
Valid CSS Valid XHTML 1.0 Strict