remove all rcs keywords
[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.
a39116f1
RP
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
fecd2382 19
fecd2382 20/*
a39116f1
RP
21 NAME
22 xmalloc() - get memory or bust
23 INDEX
24 xmalloc() uses malloc()
25
26 SYNOPSIS
27 char * my_memory;
28
29 my_memory = xmalloc(42); / * my_memory gets address of 42 chars * /
30
31 DESCRIPTION
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
38 SEE ALSO
39 malloc()
40
41 */
fecd2382
RP
42#include <stdio.h>
43
44#ifdef __STDC__
45#include <stdlib.h>
46#else
47#ifdef USG
48#include <malloc.h>
49#else
a39116f1 50char * malloc();
fecd2382
RP
51#endif /* USG */
52#endif /* __STDC__ */
53
54#define error as_fatal
55
56char * xmalloc(n)
a39116f1 57long n;
fecd2382 58{
a39116f1
RP
59 char * retval;
60 void error();
61
62 if ((retval = malloc ((unsigned)n)) == NULL)
63 {
64 error("virtual memory exceeded");
65 }
66 return (retval);
fecd2382
RP
67}
68
69/* end: xmalloc.c */
This page took 0.042347 seconds and 4 git commands to generate.