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 / tests2.2 / break.c < prev    next >
Text File  |  1997-09-03  |  127b  |  12 lines

  1. int f (/*@null@*/ int *x)
  2. {
  3.   while (3 > 4)
  4.     {
  5.       if (x == NULL) continue; 
  6.       *x = 3;
  7.     }
  8.  
  9.   *x = 3;
  10.   return 5;
  11. }
  12.