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 / moduncon.c < prev    next >
Text File  |  1997-09-03  |  195b  |  16 lines

  1. int *mmod (int *);
  2. int *umod (int *);
  3.  
  4. int f (int *x)
  5. {
  6.   (void) umod (mmod (umod (x)));
  7.   return *x;
  8. }
  9.  
  10. int g (int *x) /*@*/
  11. {
  12.   (void) umod (x);
  13.   (void) umod (mmod (umod (x)));
  14.   return *x;
  15. }
  16.