/* ************************************************************* RWhois Software Copyright (c) 1994 Scott Williamson and Mark Kosters Copyright (c) 1996-1998 Network Solutions, Inc. See the file LICENSE for conditions of use and distribution. **************************************************************** */ #ifndef _XMEM_H #define _XMEM_H void *xmalloc(size_t size); void *xcalloc(size_t nelem, size_t size); char *xstrdup(const char *str); void *xrealloc(void *ptr, size_t size); #endif