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 / inparam.c < prev    next >
C/C++ Source or Header  |  1997-09-03  |  172b  |  15 lines

  1. extern unknown (int *x);
  2. extern inparam (/*@in@*/ int *x);
  3.  
  4. void f (/*@out@*/ int *x)
  5. {
  6.   if (3 > 4)
  7.     {
  8.       unknown (x);
  9.     }
  10.   else
  11.     {
  12.       inparam (x);
  13.     }
  14. }
  15.