williamr@2
|
1 |
/* GLIB - Library of useful routines for C programming
|
williamr@2
|
2 |
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
williamr@2
|
3 |
* Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
|
williamr@2
|
4 |
*
|
williamr@2
|
5 |
* This library is free software; you can redistribute it and/or
|
williamr@2
|
6 |
* modify it under the terms of the GNU Lesser General Public
|
williamr@2
|
7 |
* License as published by the Free Software Foundation; either
|
williamr@2
|
8 |
* version 2 of the License, or (at your option) any later version.
|
williamr@2
|
9 |
*
|
williamr@2
|
10 |
* This library is distributed in the hope that it will be useful,
|
williamr@2
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
williamr@2
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
williamr@2
|
13 |
* Lesser General Public License for more details.
|
williamr@2
|
14 |
*
|
williamr@2
|
15 |
* You should have received a copy of the GNU Lesser General Public
|
williamr@2
|
16 |
* License along with this library; if not, write to the
|
williamr@2
|
17 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
williamr@2
|
18 |
* Boston, MA 02111-1307, USA.
|
williamr@2
|
19 |
*/
|
williamr@2
|
20 |
|
williamr@2
|
21 |
/*
|
williamr@2
|
22 |
* Modified by the GLib Team and others 1997-2000. See the AUTHORS
|
williamr@2
|
23 |
* file for a list of people on the GLib Team. See the ChangeLog
|
williamr@2
|
24 |
* files for a list of changes. These files are distributed with
|
williamr@2
|
25 |
* GLib at ftp://ftp.gtk.org/pub/gtk/.
|
williamr@2
|
26 |
*/
|
williamr@2
|
27 |
|
williamr@2
|
28 |
#ifndef __G_ALLOCA_H__
|
williamr@2
|
29 |
#define __G_ALLOCA_H__
|
williamr@2
|
30 |
|
williamr@2
|
31 |
#include <glib/gtypes.h>
|
williamr@2
|
32 |
|
williamr@2
|
33 |
#ifdef __GNUC__
|
williamr@2
|
34 |
/* GCC does the right thing */
|
williamr@2
|
35 |
# undef alloca
|
williamr@2
|
36 |
# define alloca(size) __builtin_alloca (size)
|
williamr@2
|
37 |
#elif defined (GLIB_HAVE_ALLOCA_H)
|
williamr@2
|
38 |
/* a native and working alloca.h is there */
|
williamr@2
|
39 |
# include <alloca.h>
|
williamr@2
|
40 |
#elif defined(__SYMBIAN32__)
|
williamr@2
|
41 |
# define alloca g_malloc
|
williamr@2
|
42 |
#else /* !__GNUC__ && !GLIB_HAVE_ALLOCA_H */
|
williamr@2
|
43 |
# ifdef _MSC_VER
|
williamr@2
|
44 |
# include <malloc.h>
|
williamr@2
|
45 |
# define alloca _alloca
|
williamr@2
|
46 |
# else /* !_MSC_VER */
|
williamr@2
|
47 |
# ifdef _AIX
|
williamr@2
|
48 |
# pragma alloca
|
williamr@2
|
49 |
# else /* !_AIX */
|
williamr@2
|
50 |
# ifndef alloca /* predefined by HP cc +Olibcalls */
|
williamr@2
|
51 |
G_BEGIN_DECLS
|
williamr@2
|
52 |
char *alloca ();
|
williamr@2
|
53 |
G_END_DECLS
|
williamr@2
|
54 |
# endif /* !alloca */
|
williamr@2
|
55 |
# endif /* !_AIX */
|
williamr@2
|
56 |
# endif /* !_MSC_VER */
|
williamr@2
|
57 |
#endif /* !__GNUC__ && !GLIB_HAVE_ALLOCA_H */
|
williamr@2
|
58 |
|
williamr@2
|
59 |
#define g_alloca(size) alloca (size)
|
williamr@2
|
60 |
#define g_newa(struct_type, n_structs) ((struct_type*) g_alloca (sizeof (struct_type) * (gsize) (n_structs)))
|
williamr@2
|
61 |
|
williamr@2
|
62 |
|
williamr@2
|
63 |
#endif /* __G_ALLOCA_H__ */
|