~ubuntu-branches/ubuntu/utopic/coreutils/utopic-proposed

« back to all changes in this revision

Viewing changes to lib/alloca.in.h

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2012-11-28 03:03:42 UTC
  • mfrom: (8.3.4 sid)
  • Revision ID: package-import@ubuntu.com-20121128030342-21zanj8354gas5gr
Tags: 8.20-3ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Make 'uname -i -p' return the real processor/hardware, instead of
    unknown.
  - Build-depend on gettext:any instead of on gettext, so that apt-get can
    properly resolve build-dependencies on the tool when cross-building.

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