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 / fred.c < prev    next >
C/C++ Source or Header  |  1997-09-03  |  198b  |  14 lines

  1. #include <stdlib.h>            /* free, EXIT_SUCCESS */
  2.  
  3. typedef int Bool;    
  4. #define False    0
  5.  
  6. static void CheckQualsSub(Bool Found);
  7.  
  8. void CheckQuals(void)
  9. {
  10.     Bool B = False;
  11.     
  12.     CheckQualsSub (B);
  13. }
  14.