1/****************
2** alloca.h
3**
4** header for alloca()
5*****************/
6
7typedef void *pointer;
8
9pointer alloca(unsigned size);
10
11