home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / binutils-2.2.1 / binutils / testsuite / binutils.all / bintest.c next >
Encoding:
C/C++ Source or Header  |  1993-04-07  |  252 b   |  31 lines

  1. /*
  2.  * nmtest.c -- this is the C code portion of tests for the GNU binutils
  3.  */
  4.  
  5. main(argc, argv)
  6. int argc;
  7. char *argv[];
  8. {
  9.   char two();
  10.   int one();
  11.  
  12.   one();
  13.   two();
  14. }
  15.  
  16. int
  17. one ()
  18. {
  19.   int i, j;
  20.   j = i++;
  21. }
  22.  
  23. char
  24. two ()
  25. {
  26.   int i, j;
  27.   i = j++;
  28.  
  29. }
  30.  
  31.