Parent Directory
|
Revision Log
feat: add programs implementing the universal archive format
1 | #ifndef UAR_XMALLOC_H |
2 | #define UAR_XMALLOC_H |
3 | |
4 | #include <stddef.h> |
5 | |
6 | void *xmalloc (size_t size); |
7 | void *xcalloc (size_t nmemb, size_t size); |
8 | void *xrealloc (void *ptr, size_t size); |
9 | |
10 | #endif /* UAR_XMALLOC_H */ |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |