1 /* PSPP - computes sample statistics.
2 Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3 Written by Ben Pfaff <blp@gnu.org>.
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
27 static void out_of_memory (void);
29 /* Public functions. */
31 /* Allocates a block of SIZE bytes and returns it.
32 If SIZE is 0, returns a null pointer.
33 Aborts if unsuccessful. */
48 /* Allocates a block of SIZE bytes, fill it with all-bits-0, and
50 If SIZE is 0, returns a null pointer.
51 Aborts if unsuccessful. */
55 void *vp = xmalloc (size);
60 /* If SIZE is 0, then block PTR is freed and a null pointer is
62 Otherwise, if PTR is a null pointer, then a new block is allocated
64 Otherwise, block PTR is reallocated to be SIZE bytes in size and
65 the new location of the block is returned.
66 Aborts if unsuccessful. */
68 xrealloc (void *ptr, size_t size)
80 vp = realloc (ptr, size);
90 /* Makes a copy of string S in malloc()'d memory and returns the copy.
91 S must not be a null pointer. */
93 xstrdup (const char *s)
100 size = strlen (s) + 1;
110 /* Private functions. */
112 /* Report an out-of-memory condition and abort execution. */
116 fprintf (stderr, "virtual memory exhausted\n");