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.2 / realloc.c < prev    next >
C/C++ Source or Header  |  1997-09-03  |  70b  |  7 lines

  1. void f (/*@only@*/ char *s)
  2. {
  3.   char *m = realloc (s);
  4.  
  5.   free (m);
  6. }
  7.