~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to win32/alloca.c

  • Committer: Monty Taylor
  • Date: 2010-12-05 07:35:32 UTC
  • mfrom: (1974 b)
  • mto: (1975.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1976.
  • Revision ID: mordred@inaugust.com-20101205073532-hehqwv27pbd7byjm
Merged source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* alloca.c -- allocate automatically reclaimed memory
2
2
   (Mostly) portable public-domain implementation -- D A Gwyn
3
3
 
 
4
   Copyright (C) 1995, 1999, 2001-2004, 2006-2008 Free Software
 
5
   Foundation, Inc.
 
6
 
 
7
   This program is free software; you can redistribute it and/or modify it
 
8
   under the terms of the GNU Lesser General Public License as published
 
9
   by the Free Software Foundation; either version 2, or (at your option)
 
10
   any later version.
 
11
 
 
12
   This program is distributed in the hope that it will be useful,
 
13
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
   General Public License for more details.
 
16
 
 
17
   You should have received a copy of the GNU Lesser General Public
 
18
   License along with this program; if not, write to the Free Software
 
19
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
 
20
   USA.
 
21
 
4
22
   This implementation of the PWB library alloca function,
5
23
   which is used to allocate space off the run-time stack so
6
24
   that it is automatically reclaimed upon procedure exit,