11 lines
132 B
C
11 lines
132 B
C
|
/****************
|
||
|
** alloca.h
|
||
|
**
|
||
|
** header for alloca()
|
||
|
*****************/
|
||
|
|
||
|
typedef void *pointer;
|
||
|
|
||
|
pointer alloca(unsigned size);
|
||
|
|