OSDN Git Service

Fix mips64vr4100-elf build failure.
[pf3gnuchains/gcc-fork.git] / gcc / cppalloc.c
1 /* Part of CPP library.  (memory allocation - xmalloc etc)
2    Copyright (C) 1986, 87, 89, 92 - 95, 1998 Free Software Foundation, Inc.
3    Written by Per Bothner, 1994.
4    Based on CCCP program by Paul Rubin, June 1986
5    Adapted to ANSI C, Richard Stallman, Jan 1987
6
7 This program is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 2, or (at your option) any
10 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
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
21  In other words, you are welcome to use, share and improve this program.
22  You are forbidden to forbid anyone else to use, share and improve
23  what you give them.   Help stamp out software-hoarding!  */
24
25 #include "config.h"
26 #include "system.h"
27 #include "gansidecl.h"
28 #include "cpplib.h"
29
30 static void
31 memory_full ()
32 {
33   fprintf (stderr, "%s: Memory exhausted.\n", progname);
34   exit (FATAL_EXIT_CODE);
35 }
36
37 char *
38 xmalloc (size)
39      unsigned size;
40 {
41   register char *ptr = (char *) malloc (size);
42   if (ptr == 0)
43     memory_full ();
44   return ptr;
45 }
46
47 char *
48 xrealloc (old, size)
49      char *old;
50      unsigned size;
51 {
52   register char *ptr = (char *) realloc (old, size);
53   if (ptr == 0)
54     memory_full ();
55   return ptr;
56 }