home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / splint3s.zip / splint-3.0.1.6 / test / oldstyle2.c < prev    next >
Text File  |  2002-02-04  |  225b  |  32 lines

  1.  
  2. void
  3. oldDec(x)
  4.      int x; 
  5. {
  6.   x = 5;
  7.  
  8.  
  9. void
  10. noShadow()
  11. {   
  12.    switch (0)
  13.       {
  14.         int   x;
  15.           case 0:
  16.         {  x = 0;}
  17.         }
  18. }   
  19.  
  20.  
  21.  
  22. void
  23. unrecognized()
  24. {   
  25.    switch (0)
  26.       {
  27.       case 0:
  28.         {  x = 0;}
  29.         }
  30. }   
  31.