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