diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2001-11-14 10:25:35 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2001-11-14 10:25:35 +0000 |
commit | d7ca37e413e19f58aa706d8233193fb2120dc4f5 (patch) | |
tree | 7d44c06310458aeedb8f2a5b264921f79e22bf19 /newlib/libc/include/alloca.h | |
parent | 7a90b1ef80704d6d2412c22d2b4555eee304ea54 (diff) | |
download | cygnal-d7ca37e413e19f58aa706d8233193fb2120dc4f5.tar.gz cygnal-d7ca37e413e19f58aa706d8233193fb2120dc4f5.tar.bz2 cygnal-d7ca37e413e19f58aa706d8233193fb2120dc4f5.zip |
* libc/include/alloca.h: Move libc/sys/linux/include/alloca.h
to here. Rearrange for general inclusion by stdlib.h.
* libc/include/stdlib.h: Include <alloca.h> if __STRICT_ANSI__
isn't defined.
* libc/sys/linux/include/alloca.h: Move to libc/include.
Diffstat (limited to 'newlib/libc/include/alloca.h')
-rw-r--r-- | newlib/libc/include/alloca.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/newlib/libc/include/alloca.h b/newlib/libc/include/alloca.h new file mode 100644 index 000000000..42439e370 --- /dev/null +++ b/newlib/libc/include/alloca.h @@ -0,0 +1,19 @@ +/* libc/include/alloca.h - Allocate memory on stack */ + +/* Written 2000 by Werner Almesberger */ +/* Rearranged for general inclusion by stdlib.h. + 2001, Corinna Vinschen <vinschen@redhat.com> */ + +#ifndef _NEWLIB_ALLOCA_H +#define _NEWLIB_ALLOCA_H + +#include "_ansi.h" +#include <sys/reent.h> + +#ifdef __GNUC__ +#define alloca(size) __builtin_alloca(size) +#else +void * _EXFUN(alloca,(size_t)); +#endif + +#endif |