VERSION should have been 4.4.1, not 4.5...
[deliverable/binutils-gdb.git] / gas / xmalloc.c
CommitLineData
fecd2382
RP
1/* xmalloc.c - get memory or bust
2 Copyright (C) 1987, 1990, 1991 Free Software Foundation, Inc.
3
4This file is part of GAS, the GNU Assembler.
5
6GAS is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
6026cd06 8the Free Software Foundation; either version 2, or (at your option)
fecd2382
RP
9any later version.
10
11GAS 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 GAS; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
fecd2382
RP
20/*
21NAME
22 xmalloc() - get memory or bust
23INDEX
24 xmalloc() uses malloc()
25
26SYNOPSIS
27 char * my_memory;
28
29 my_memory = xmalloc(42); / * my_memory gets address of 42 chars * /
30
31DESCRIPTION
32
33 Use xmalloc() as an "error-free" malloc(). It does almost the same job.
34 When it cannot honour your request for memory it BOMBS your program
35 with a "virtual memory exceeded" message. Malloc() returns NULL and
36 does not bomb your program.
37
38SEE ALSO
39 malloc()
40
41*/
42#include <stdio.h>
43
44#ifdef __STDC__
45#include <stdlib.h>
46#else
47#ifdef USG
48#include <malloc.h>
49#else
50 char * malloc();
51#endif /* USG */
52#endif /* __STDC__ */
53
54#define error as_fatal
55
56char * xmalloc(n)
57 long n;
58{
59 char * retval;
60 void error();
61
62 if ((retval = malloc ((unsigned)n)) == NULL)
63 {
64 error("virtual memory exceeded");
65 }
66 return (retval);
67}
68
69/* end: xmalloc.c */
This page took 0.050151 seconds and 4 git commands to generate.