home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / man / cat3 / free.0 < prev    next >
Text File  |  1993-12-07  |  1KB  |  67 lines

  1.  
  2. FREE(3)                    UNIX Programmer's Manual                    FREE(3)
  3.  
  4. NNAAMMEE
  5.      ffrreeee - free up memory allocated with malloc, calloc or realloc
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttddlliibb..hh>>
  9.  
  10.      _v_o_i_d
  11.      ffrreeee(_v_o_i_d _*_p_t_r)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      The ffrreeee() function causes the space pointed to by _p_t_r to be deallocated,
  15.      that is, made available for further allocation.  If _p_t_r is a null point­
  16.      er, no action occurs.  Otherwise, if the argument does not match a point­
  17.      er earlier returned by the calloc,  malloc,  or realloc function, or if
  18.      the space has been deallocated by a call to ffrreeee() or realloc,  general
  19.      havoc may occur.
  20.  
  21. RREETTUURRNN VVAALLUUEESS
  22.      The ffrreeee() function returns no value.
  23.  
  24. SSEEEE AALLSSOO
  25.      calloc(3),  malloc(3),  realloc(3)
  26.  
  27. SSTTAANNDDAARRDDSS
  28.      The ffrreeee() function conforms to ANSI C3.159­1989 (``ANSI C'').
  29.  
  30. BSD Experimental                 June 29, 1991                               1
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.