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

  1.  
  2. MEMORY(3)                  UNIX Programmer's Manual                  MEMORY(3)
  3.  
  4. NNAAMMEE
  5.      mmaalllloocc, ffrreeee, rreeaalllloocc, ccaalllloocc, aallllooccaa - general memory allocation opera­
  6.      tions
  7.  
  8. SSYYNNOOPPSSIISS
  9.      ##iinncclluuddee <<ssttddlliibb..hh>>
  10.  
  11.      _v_o_i_d _*
  12.      mmaalllloocc(_s_i_z_e___t _s_i_z_e)
  13.  
  14.      _v_o_i_d
  15.      ffrreeee(_v_o_i_d _*_p_t_r)
  16.  
  17.      _v_o_i_d _*
  18.      rreeaalllloocc(_v_o_i_d _*_p_t_r, _s_i_z_e___t _s_i_z_e)
  19.  
  20.      _v_o_i_d _*
  21.      ccaalllloocc(_s_i_z_e___t _n_e_l_e_m, _s_i_z_e___t _e_l_s_i_z_e)
  22.  
  23.      _v_o_i_d _*
  24.      aallllooccaa(_s_i_z_e___t _s_i_z_e)
  25.  
  26. DDEESSCCRRIIPPTTIIOONN
  27.      These functions allocate and free memory for the calling process.  They
  28.      are described in the individual manual pages.
  29.  
  30. SSEEEE AALLSSOO
  31.      calloc(3),  free(3),  malloc(3),  realloc(3),  alloca(3),
  32.  
  33. SSTTAANNDDAARRDDSS
  34.      These functions, with the exception of aallllooccaa() conform to ANSI
  35.      C3.159­1989 (``ANSI C'').
  36.  
  37. 4th Berkeley Distribution         May 2, 1991                                1
  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.