~ubuntu-branches/ubuntu/trusty/patch/trusty-security

« back to all changes in this revision

Viewing changes to lib/alloca.in.h

  • Committer: Package Import Robot
  • Author(s): Christoph Berg
  • Date: 2013-01-03 17:34:45 UTC
  • mto: (6.1.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20130103173445-5vf8qmnfgd7ug67h
Tags: upstream-2.7.1
ImportĀ upstreamĀ versionĀ 2.7.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- buffer-read-only: t -*- vi: set ro: */
2
 
/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3
1
/* Memory allocation on the stack.
4
2
 
5
 
   Copyright (C) 1995, 1999, 2001-2004, 2006-2011 Free Software Foundation,
 
3
   Copyright (C) 1995, 1999, 2001-2004, 2006-2012 Free Software Foundation,
6
4
   Inc.
7
5
 
8
6
   This program is free software; you can redistribute it and/or modify it
16
14
   General Public License for more details.
17
15
 
18
16
   You should have received a copy of the GNU General Public
19
 
   License along with this program; if not, write to the Free Software
20
 
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
21
 
   USA.  */
 
17
   License along with this program; if not, see
 
18
   <http://www.gnu.org/licenses/>.
 
19
  */
22
20
 
23
21
/* Avoid using the symbol _ALLOCA_H here, as Bison assumes _ALLOCA_H
24
22
   means there is a real alloca function.  */
46
44
#  define alloca _alloca
47
45
# elif defined __DECC && defined __VMS
48
46
#  define alloca __ALLOCA
 
47
# elif defined __TANDEM && defined _TNS_E_TARGET
 
48
#  ifdef  __cplusplus
 
49
extern "C"
 
50
#  endif
 
51
void *_alloca (unsigned short);
 
52
#  pragma intrinsic (_alloca)
 
53
#  define alloca _alloca
49
54
# else
50
55
#  include <stddef.h>
51
56
#  ifdef  __cplusplus