home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / gnu / ixemul-39.47-env-bin.lha / man / cat3 / alloca.0 < prev    next >
Text File  |  1993-12-07  |  1KB  |  67 lines

  1.  
  2. ALLOCA(3)                  UNIX Programmer's Manual                  ALLOCA(3)
  3.  
  4. NNAAMMEE
  5.      aallllooccaa - memory allocator
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttddlliibb..hh>>
  9.  
  10.      _v_o_i_d _*
  11.      aallllooccaa(_s_i_z_e___t _s_i_z_e)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      The aallllooccaa() function allocates _s_i_z_e bytes of space in the stack frame of
  15.      the caller.  This temporary space is automatically freed on return.
  16.  
  17. RREETTUURRNN VVAALLUUEESS
  18.      The aallllooccaa() function returns a pointer to the beginning of the allocated
  19.      space.  If the allocation failed, a NULL pointer is returned.
  20.  
  21. SSEEEE AALLSSOO
  22.      brk(2),  pagesize(2) calloc(3),  malloc(3),  realloc(3),
  23.  
  24. BBUUGGSS
  25.      The aallllooccaa() function is machine dependent; its use is discouraged.
  26.  
  27. 4th Berkeley Distribution         May 2, 1991                                1
  28.  
  29.  
  30.  
  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.