force all files to end in "/* end of filename"
[platform/upstream/binutils.git] / gas / xmalloc.c
1 /* xmalloc.c - get memory or bust
2    Copyright (C) 1987, 1990, 1991 Free Software Foundation, Inc.
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.  */
19
20 /*
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   */
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
56 char * 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 of xmalloc.c */