~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to win32/alloca.c

  • Committer: Lee Bieber
  • Date: 2010-12-04 20:15:50 UTC
  • mfrom: (1971.1.4 build)
  • Revision ID: kalebral@gmail.com-20101204201550-1t7a1bde34835tgu
Merge Monty - more licensing updates
Merge Lee - Update files that did not have a license or had incorrect license structure
Merge Vijay - refactor sysvar strings for innobase

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,