]> git.saurik.com Git - bison.git/blame - src/allocate.c
Use malloc, if using alloca is troublesome.
[bison.git] / src / allocate.c
CommitLineData
40675e7c
DM
1/* Allocate and clear storage for bison,
2 Copyright (C) 1984, 1989 Free Software Foundation, Inc.
3
4This file is part of Bison, the GNU Compiler Compiler.
5
6Bison is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11Bison is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with Bison; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21#include <stdio.h>
a083fbbf 22#include "system.h"
40675e7c 23
8f047e5e
RS
24#if defined (__STDC__) || defined (_MSC_VER)
25extern void *calloc ();
26extern void *realloc ();
27#else
40675e7c
DM
28extern char *calloc ();
29extern char *realloc ();
8f047e5e
RS
30#endif
31
40675e7c
DM
32extern void done ();
33
34extern char *program_name;
35
36char *
37xmalloc (n)
38 register unsigned n;
39{
40 register char *block;
41
42 /* Avoid uncertainty about what an arg of 0 will do. */
43 if (n == 0)
44 n = 1;
45 block = calloc (n, 1);
46 if (block == NULL)
47 {
a083fbbf 48 fprintf (stderr, _("%s: memory exhausted\n"), program_name);
40675e7c
DM
49 done (1);
50 }
51
52 return (block);
53}
54
55char *
56xrealloc (block, n)
57 register char *block;
58 register unsigned n;
59{
60 /* Avoid uncertainty about what an arg of 0 will do. */
61 if (n == 0)
62 n = 1;
63 block = realloc (block, n);
64 if (block == NULL)
65 {
a083fbbf 66 fprintf (stderr, _("%s: memory exhausted\n"), program_name);
40675e7c
DM
67 done (1);
68 }
69
70 return (block);
71}