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.2a / floatdouble.c < prev    next >
Text File  |  1997-09-03  |  142b  |  10 lines

  1. int f (float f, double d)
  2. {
  3.   float f1 = d;  /* bad without +floatdouble */
  4.   double d1 = f; /* okay relaxed */
  5.  
  6.   f1 = d + f;
  7.  
  8.   return 2;
  9. }
  10.