~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to win32/alloca.c

  • Committer: Stewart Smith
  • Date: 2010-11-03 03:30:44 UTC
  • mto: (1902.1.1 build) (1910.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1903.
  • Revision ID: stewart@flamingspork.com-20101103033044-10ctxt43f0yhm4v2
fix docs warning: underline/overline too short for update.rst

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
 
 
22
4
   This implementation of the PWB library alloca function,
23
5
   which is used to allocate space off the run-time stack so
24
6
   that it is automatically reclaimed upon procedure exit,