home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / splint3s.zip / splint-3.0.1.6 / test / csyntax3.c < prev    next >
C/C++ Source or Header  |  2000-06-12  |  85b  |  13 lines

  1. typedef int a1;
  2.  
  3. a1 main()
  4. {
  5.   int x;
  6.   a1 a1;
  7.   
  8.   x = 3;
  9.   a1 = x;
  10.   return a1;
  11. }
  12.  
  13.