/*
- * $Id: util.c,v 1.63 1998/07/31 22:23:55 wessels Exp $
+ * $Id: util.c,v 1.64 1998/09/15 07:17:50 wessels Exp $
*
* DEBUG:
* AUTHOR: Harvest Derived
void *
xmalloc(size_t sz)
{
- static void *p;
+ void *p;
if (sz < 1)
sz = 1;
void *
xrealloc(void *s, size_t sz)
{
- static void *p;
+ void *p;
#if XMALLOC_TRACE
xmalloc_show_trace(s, -1);
void *
xcalloc(int n, size_t sz)
{
- static void *p;
+ void *p;
if (n < 1)
n = 1;
char *
xstrdup(const char *s)
{
- static char *p = NULL;
+ char *p = NULL;
size_t sz;
if (s == NULL) {