Parent Directory
|
Revision Log
Patch from Anthony Towns for Task: debian/control support
| 1 | /* $Id: util.h,v 1.2 2001/04/24 06:35:07 tausq Rel $ */ |
| 2 | #ifndef _UTIL_H |
| 3 | #define _UTIL_H |
| 4 | |
| 5 | #include <stdlib.h> |
| 6 | |
| 7 | char *safe_strdup(const char *); |
| 8 | void *safe_malloc(int); |
| 9 | void *safe_realloc(void *, size_t); |
| 10 | void safe_free(void **); |
| 11 | void memleak_check(void); |
| 12 | |
| 13 | #endif |
| ViewVC Help | |
| Powered by ViewVC 1.1.5 |