home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / splint3s.zip / splint-3.0.1.6 / test / deadparam.c < prev    next >
C/C++ Source or Header  |  2001-07-03  |  195b  |  12 lines

  1. extern void f (/*@out@*/ char *s);
  2. extern void g (/*@special@*/ char *s) /*@allocates s@*/ ;
  3.  
  4. void t (/*@only@*/ char *s1, /*@only@*/ char *s2)
  5. {
  6.   free (s1);
  7.   f (s1);
  8.  
  9.   free (s2);
  10.   g (s2);
  11. }
  12.