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 / impabstract.c < prev    next >
Text File  |  1997-09-03  |  175b  |  18 lines

  1. typedef int mint;
  2. typedef /*@concrete@*/ int cint;
  3.  
  4. int f (mint m, cint c)
  5. {
  6.   if (c > 3)
  7.     {
  8.       return c;
  9.     }
  10.  
  11.   if (m < 2)
  12.     {
  13.       return m;
  14.     }
  15.  
  16.   return 3;
  17. }
  18.