home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 5
/
DATAFILE_PDCD5.iso
/
utilities
/
g
/
gcc
/
!GCC
/
UnixLib
/
h
/
alloca
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-09-01
|
243 b
|
21 lines
/* alloca.h (c) Copyright 1991 H.Rogers */
#ifndef __ALLOCA_H
#define __ALLOCA_H
#ifndef __SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
extern void *alloca(size_t);
#ifdef __cplusplus
}
#endif
#endif