Home | History | Annotate | Download | only in Macintosh
      1 /****************
      2 ** alloca.h
      3 **
      4 ** header for alloca()
      5 *****************/
      6 
      7 typedef void *pointer;
      8 
      9 pointer alloca(unsigned size);
     10 
     11