home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lclint.zip / lclint-2_3h-os2-bin.zip / test / csyntax10.c < prev    next >
C/C++ Source or Header  |  1997-09-03  |  158b  |  21 lines

  1. typedef int tint;
  2.  
  3. int ffunc(tint tint)
  4. {
  5.   tint = 3;
  6.   return tint;
  7. }
  8.  
  9. int gfunc()
  10. {
  11.   tint tint;
  12.  
  13.   tint = 3;
  14.   return tint;
  15. }
  16.  
  17. struct x
  18. {
  19.   tint tint;
  20. } ;
  21.