home *** CD-ROM | disk | FTP | other *** search
-
- #ifndef __XMALLOC_H__
- #define __XMALLOC_H__
-
- #include <stddef.h>
-
- /*
- * All of these routines invariably return success,
- * or abort the program.
- */
- extern void xminit(void);
- extern void xminfo(void);
- extern void xmterm(void);
-
- extern void *xmalloc(size_t sz);
- extern void *xcalloc(size_t sz);
- extern void *xrealloc(void *ptr, size_t sz);
- extern void xfree(void *ptr);
- extern char *xstrdup(const char *str);
- extern char *xintdup(int x);
-
- #endif
-