~drizzle-trunk/drizzle/development

1712.1.1 by Monty Taylor
Merged libdrizzle directly into tree.
1
/* Memory allocation on the stack.
2
1999.6.1 by kalebral at gmail
update Copyright strings to a more common format to help with creating the master debian copyright file
3
   Copyright (C) 1995, 1999, 2001-2004, 2006-2008 Free Software Foundation, Inc.
1712.1.1 by Monty Taylor
Merged libdrizzle directly into tree.
4
5
   This program is free software; you can redistribute it and/or modify it
6
   under the terms of the GNU Lesser General Public License as published
7
   by the Free Software Foundation; either version 2, or (at your option)
8
   any later version.
9
10
   This program is distributed in the hope that it will be useful,
11
   but WITHOUT ANY WARRANTY; without even the implied warranty of
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
   General Public License for more details.
14
15
   You should have received a copy of the GNU Lesser General Public
16
   License along with this program; if not, write to the Free Software
17
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
18
   USA.  */
19
20
/* Avoid using the symbol _ALLOCA_H here, as Bison assumes _ALLOCA_H
21
   means there is a real alloca function.  */
22
#ifndef _GL_ALLOCA_H
23
#define _GL_ALLOCA_H
24
25
/* alloca (N) returns a pointer to N bytes of memory
26
   allocated on the stack, which will last until the function returns.
27
   Use of alloca should be avoided:
28
     - inside arguments of function calls - undefined behaviour,
29
     - in inline functions - the allocation may actually last until the
30
       calling function returns,
31
     - for huge N (say, N >= 65536) - you never know how large (or small)
32
       the stack is, and when the stack cannot fulfill the memory allocation
33
       request, the program just crashes.
34
 */
35
36
#ifndef alloca
37
# ifdef __GNUC__
38
#  define alloca __builtin_alloca
39
# elif defined _AIX
40
#  define alloca __alloca
41
# elif defined _MSC_VER
42
#  include <malloc.h>
43
#  define alloca _alloca
44
# elif defined __DECC && defined __VMS
45
#  define alloca __ALLOCA
46
# else
47
#  include <stddef.h>
48
#  ifdef  __cplusplus
49
extern "C"
50
#  endif
51
void *alloca (size_t);
52
# endif
53
#endif
54
55
#endif /* _GL_ALLOCA_H */