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 / glob.c < prev    next >
Text File  |  1997-09-03  |  232b  |  29 lines

  1. int x;
  2. int y;
  3. int z;
  4.  
  5. int useGlob (int a)
  6. {
  7.   a = x + y;
  8.   return (a + x + y) ;
  9. }
  10.  
  11. int dontuseGlob (int a)
  12. {
  13.   return (x + a);
  14. }
  15.  
  16. int unspec (int a)
  17. {
  18.   return (y + z + a);
  19. }
  20.  
  21. int callsUseGlob (int a)
  22. {
  23.   return (useGlob(a));
  24. }
  25.  
  26.  
  27.  
  28.  
  29.