1234567891011121314151617181920212223242526272829 |
- #ifndef _MON_LIB_XMALLOC_H
- #define _MON_LIB_XMALLOC_H
- #include <sys/types.h>
- __BEGIN_DECLS
- void *xmalloc(size_t);
- void *xrealloc(void *, size_t);
- void xfree(void *);
- char *xstrdup(const char *);
- __END_DECLS
- #endif
|