cctools
|
00001 /* 00002 Copyright (C) 2003-2004 Douglas Thain and the University of Wisconsin 00003 Copyright (C) 2005- The University of Notre Dame 00004 This software is distributed under the GNU General Public License. 00005 See the file COPYING for details. 00006 */ 00007 00008 #include <sys/types.h> 00009 00010 #ifndef XMALLOC_H 00011 #define XMALLOC_H 00012 00025 void *xxmalloc(size_t nbytes); 00026 00027 void *xxrealloc(void *ptr, size_t nbytes); 00028 00034 char *xstrdup(const char *str); 00035 00036 #endif